2008-08-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git] / tests / test-251.cs
blob588cca9f2ac2cbe1ae4f4169a5e4f8fa13c33b17
1 //
2 // Tests the valid value types for volatile fields.
3 //
4 interface R {
7 enum XX {
11 class X {
12 volatile byte a;
13 volatile sbyte b;
14 volatile short c;
15 volatile ushort d;
16 volatile int e;
17 volatile uint f;
18 volatile char g;
19 volatile float h;
20 volatile bool i;
21 volatile X x;
22 volatile R r;
23 volatile XX dd;
25 static void Main () {}