mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
217 B
D
12 lines
217 B
D
// https://issues.dlang.org/show_bug.cgi?id=19014
|
|
|
|
import core.stdc.config;
|
|
|
|
void main()
|
|
{
|
|
if (true)
|
|
{
|
|
static import core.stdc.math;
|
|
}
|
|
static assert(!__traits(compiles, core.stdc.math.cos(0)));
|
|
}
|