blob: 78b9ddd64cec31bb0eb1ce7291b317d0cc9e3e91 [file] [log] [blame]
// 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();
}