view tests/minicomplex/volatile1.d @ 562:1ada9c6865df

Automated merge with http://hg.dsource.org/projects/llvmdc
author Christian Kamm <kamm incasoftware de>
date Sat, 30 Aug 2008 10:31:04 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module tangotests.volatile1;

import tango.stdc.stdlib;

void main()
{
    int var = rand();
    {
        int i = var;
        volatile;
        int j = i;
    }
}