blob: fbd740645476ee6c8c708259b8f7d0ad975ce53c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
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(...)
{
}
|