mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
119 B
D
12 lines
119 B
D
// REQUIRED_ARGS: -c
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
&this
|
|
---
|
|
*/
|
|
struct S0 {
|
|
void foo() {
|
|
pragma(msg, &this);
|
|
}
|
|
}
|