mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
16 lines
206 B
D
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();
|
|
}
|