dmd/compiler/test/fail_compilation/e7804_2.d
2022-07-09 18:53:07 +02:00

19 lines
293 B
D

/*
TEST_OUTPUT:
---
fail_compilation/e7804_2.d(17): Error: `__traits(getMember, Foo, "func")` does not give a valid type
---
*/
module e7804_2;
class Foo
{
void func(){}
}
void test()
{
__traits(getMember, Foo, "func") var;
auto a = cast(__traits(getMember, Foo, "func")) 0;
}