blob: 0e8ff2cd30c894c0f694f1cd56ae87b22acee871 [file] [log] [blame]
Reid Spencercf94fb92007-04-15 20:41:31 +00001// RUN: %llvmgcc -xc++ -S -o - %s | grep "struct.X::Y"
Chris Lattner1e0c2132003-10-21 21:33:18 +00002struct X {
3
4 struct Y {
5 Y();
6 };
7
8};
9
10X::Y::Y() {
11
12}