mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
146 B
D
12 lines
146 B
D
// https://issues.dlang.org/show_bug.cgi?id=24560
|
|
|
|
class C { }
|
|
struct S
|
|
{
|
|
static void fun(C heur = new C) { }
|
|
}
|
|
|
|
void main()
|
|
{
|
|
S.fun();
|
|
}
|