mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-09-22 21:30:18 +02:00
Fixed a few comment types. Forgot to add makefile for the basic GC.
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;
|
|
}
|
|
}
|