mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
19 lines
198 B
D
19 lines
198 B
D
/*
|
|
EXTRA_SOURCES: imports/Other.d
|
|
PERMUTE_ARGS:
|
|
RUN_OUTPUT:
|
|
---
|
|
Same
|
|
other
|
|
---
|
|
*/
|
|
|
|
module Same; // makes no difference if removed
|
|
import core.stdc.stdio;
|
|
class Same
|
|
{
|
|
this()
|
|
{
|
|
printf("Same\n");
|
|
}
|
|
}
|