mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
19 lines
194 B
D
19 lines
194 B
D
// REQUIRED_ARGS: -o-
|
|
// PERMUTE_ARGS:
|
|
|
|
struct X
|
|
{
|
|
void mfoo(this T)() {}
|
|
}
|
|
void test()
|
|
{
|
|
shared const X scx;
|
|
|
|
scx.mfoo();
|
|
}
|
|
|
|
struct Vec
|
|
{
|
|
int x;
|
|
void sc() shared const {}
|
|
}
|