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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0420-2.cs
blob
14b3af092b3b5213167441bf335e3775a6010e39
1
// cs0420-2.cs: `XX.j': A volatile fields cannot be passed using a ref or out parameter
2
// Line: 14
3
// Compiler options: -unsafe /warnaserror /warn:1
4
5
unsafe class
XX
{
6
static volatile int
j
;
7
8
static void
X
(
ref int
a
)
9
{
10
}
11
12
static void
Main
()
13
{
14
X
(
ref
j
);
15
}
16
}