Files
ldc/tangotests/volatile1.d
Tomas Lindquist Olsen 39ed86269e [svn r222] Forgot to remove volatile ATTENTION.
Fixed a few comment types.
Forgot to add makefile for the basic GC.
2008-05-13 18:07:03 +02:00

14 lines
165 B
D

module tangotests.volatile1;
import tango.stdc.stdlib;
void main()
{
int var = rand();
{
int i = var;
volatile;
int j = i;
}
}