1 // EXTRA_SOURCES: imports/Other.d 2 // PERMUTE_ARGS: 3 4 module Same; // makes no difference if removed 5 import core.stdc.stdio; 6 class Same 7 { this()8 this() 9 { 10 printf("Same\n"); 11 } 12 } 13