mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
10 lines
140 B
D
10 lines
140 B
D
module bug79;
|
|
import std.c.linux.linux;
|
|
void main()
|
|
{
|
|
timespec ts;
|
|
ts.tv_nsec -= 1;
|
|
//auto t = ts.tv_nsec - 1;
|
|
//t -= 1;
|
|
}
|