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
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0677.cs
blob
93429fabd2cd1d257a5e3640a5d138bcebcc6fc0
1
// cs0677.cs: `X.a': A volatile field cannot be of the type `A'
2
// Line: 8
3
using
System
;
4
5
struct
A { int a; }
6
7
class
X
{
8
public volatile
A a
;
9
static void
Main
()
10
{
11
}
12
}