mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
182 B
D
13 lines
182 B
D
/*
|
|
REQUIRED_ARGS: -inline
|
|
PERMUTE_ARGS: -release -O
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=17072
|
|
|
|
import core.thread;
|
|
|
|
void main()
|
|
{
|
|
Thread.sleep(dur!"msecs"(0));
|
|
}
|