blob: d21812588ad18cd5776f17ddf714680eaf6bb7fe [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=22214
struct S
{
struct T
{
}
}
void main() {
const S s;
static if (__traits(compiles, { auto t = s.T; }))
{
auto t = s.T;
}
}