(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail19911c.d
/*
DFLAGS:
TEST_OUTPUT:
---
fail_compilation/fail19911c.d(14): Error: function `object.fun` `object.TypeInfo` could not be found, but is implicitly used in D-style variadic functions
---
*/

module object;

class Object { }
class TypeInfo_Tuple { }

void fun(...)
{
}