blob: d45801ead1f0564830804a1cf317a1936ab2ea28 [file] [log] [blame]
// 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;
}
})));