blob: 7840095ca63647e2e584c1dd4b4e9ba66856cb03 [file] [log] [blame]
struct Foo
{
void bar()(typeof(cast()this) x)
{
}
}
void main()
{
Foo x;
x.bar(x);
}