blob: 680f573ce700e997eccd4fea2eff801dcf9e419c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// https://issues.dlang.org/show_bug.cgi?id=22523
import core.stdc.stdio : puts;
int main()
{
puts("Executed main although it should be skipped!");
return 1;
}
unittest {}
|