Do not promote null values because it may be unsafe to do so.
[oota-llvm.git] / test / C++Frontend / 2003-10-21-InnerClass.cpp.tr
1 // RUN: %llvmgcc -xc++ -S -o - %s | grep {struct.X::Y}
2 struct X {
3
4   struct Y {
5     Y();
6   };
7
8 };
9
10 X::Y::Y() {
11
12 }