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

17 lines
202 B
D

// https://issues.dlang.org/show_bug.cgi?id=23082
/*
TEST_OUTPUT:
---
bar
---
*/
void foo()() {}
alias bar = foo;
void bar() { }
void main()
{
pragma(msg, __traits(parent, main).bar.stringof);
}