mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
222 B
D
12 lines
222 B
D
// https://issues.dlang.org/show_bug.cgi?id=21813
|
|
Target.OS defaultTargetOS()
|
|
{
|
|
return Target.OS.linux;
|
|
}
|
|
|
|
struct Target
|
|
{
|
|
enum OS { linux }
|
|
OS os = defaultTargetOS();
|
|
@property isPOSIX() scope @nogc { }
|
|
}
|