repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0677.cs
blob
58d4a050695e23159cb38aec880e86f3cb6376f6
1
// CS0677: `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
}