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