dmd/compiler/test/compilable/b16382.d
2022-07-09 18:53:07 +02:00

12 lines
119 B
D

// REQUIRED_ARGS: -c
/*
TEST_OUTPUT:
---
&this
---
*/
struct S0 {
void foo() {
pragma(msg, &this);
}
}