comparison tangotests/volatile1.d @ 206:cd2c9f4010e4 trunk

[svn r222] Forgot to remove volatile ATTENTION. Fixed a few comment types. Forgot to add makefile for the basic GC.
author lindquist
date Tue, 13 May 2008 18:07:03 +0200
parents
children
comparison
equal deleted inserted replaced
205:9d44ec83acd1 206:cd2c9f4010e4
1 module tangotests.volatile1;
2
3 import tango.stdc.stdlib;
4
5 void main()
6 {
7 int var = rand();
8 {
9 int i = var;
10 volatile;
11 int j = i;
12 }
13 }