]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/b16382.d
d: Synchronize testsuite with upstream dmd
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / b16382.d
1 // REQUIRED_ARGS: -c
2 /*
3 TEST_OUTPUT:
4 ---
5 &this
6 ---
7 */
8 struct S0 {
9 void foo() {
10 pragma(msg, &this);
11 }
12 }