mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 01:30:47 -04:00
12 lines
114 B
C++
12 lines
114 B
C++
// RUN: %llvmgcc -xc++ -S -o - %s | grep {struct.X::Y}
|
|
struct X {
|
|
|
|
struct Y {
|
|
Y();
|
|
};
|
|
|
|
};
|
|
|
|
X::Y::Y() {
|
|
|
|
}
|