blob: fadd51d22670a6000fc545b34bc48b989dcdc3eb [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -xc++ -S -o - %s | grep {struct.X::Y}
2struct X {
3
4 struct Y {
5 Y();
6 };
7
8};
9
10X::Y::Y() {
11
12}