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

12 lines
106 B
D

struct Foo
{
void bar()(typeof(cast()this) x)
{
}
}
void main()
{
Foo x;
x.bar(x);
}