mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
106 B
D
12 lines
106 B
D
struct Foo
|
|
{
|
|
void bar()(typeof(cast()this) x)
|
|
{
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
Foo x;
|
|
x.bar(x);
|
|
}
|