mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
268 B
D
16 lines
268 B
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(...)
|
|
{
|
|
}
|