view tests/minicomplex/volatile1.d @ 701:855e0ef78fa2

Guess exe name from first object name if none specified.
author Christian Kamm <kamm incasoftware de>
date Mon, 13 Oct 2008 19:02:03 +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;
    }
}