2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / test-251.cs
1 //
2 // Tests the valid value types for volatile fields.
3 //
4 interface R {
5 }
6
7 enum XX {
8         A
9 }
10
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;
24
25         static void Main () {}
26 }