mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
14 lines
165 B
D
14 lines
165 B
D
module tangotests.volatile1;
|
|
|
|
import tango.stdc.stdlib;
|
|
|
|
void main()
|
|
{
|
|
int var = rand();
|
|
{
|
|
int i = var;
|
|
volatile;
|
|
int j = i;
|
|
}
|
|
}
|