mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
139 B
D
11 lines
139 B
D
module lib13666;
|
|
|
|
template drt_envvars()
|
|
{
|
|
extern(C) __gshared bool enabled = false;
|
|
}
|
|
|
|
bool foo()
|
|
{
|
|
return drt_envvars!().enabled;
|
|
}
|