mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
129 B
D
15 lines
129 B
D
struct S
|
|
{
|
|
this(int) {}
|
|
~this() {}
|
|
}
|
|
|
|
int g(S a, S b)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
true ? g(S(), S(1)) : {}();
|
|
}
|