mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
5647b43e74
llvm-svn: 36084
13 lines
114 B
Plaintext
13 lines
114 B
Plaintext
// RUN: %llvmgcc -xc++ -S -o - %s | grep "struct.X::Y"
|
|
struct X {
|
|
|
|
struct Y {
|
|
Y();
|
|
};
|
|
|
|
};
|
|
|
|
X::Y::Y() {
|
|
|
|
}
|