summaryrefslogtreecommitdiff
path: root/test/cxx/input02.cpp
blob: 65ebe0db8027dd08330fe2288122fed29ba6a876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

struct A
{
	struct B {};
};

struct C
{
	struct D : virtual public A {};
};

C::D::A d;

C c;