repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update
[mcs.git]
/
tests
/
test-251.cs
blob
588cca9f2ac2cbe1ae4f4169a5e4f8fa13c33b17
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
}