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

16 lines
206 B
D

// https://issues.dlang.org/show_bug.cgi?id=20860
struct A
{
this(int a) {}
///
void opDispatch(string methodName, Params...)(Params params) {
}
~this() {}
}
void main()
{
A(3).test();
}