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

17 lines
211 B
D

// https://issues.dlang.org/show_bug.cgi?id=20717
/*
TEST_OUTPUT:
---
false
---
*/
pragma(msg, is(typeof({
struct S
{
struct Foo {}
struct Bar() {}
alias Bar = Foo;
}
})));