DCD/tests/tc717/file.d

15 lines
128 B
D

struct A
{
B b;
void test()
{
auto here = b.inside_b;
here.
}
}
struct B
{
int inside_b;
}