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
2009-03-15 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs1651.cs
blob
0f272277dfa6b12c9cbade345f7a99810f92672d
1
// cs1651.cs: Fields of static readonly field `B.a' cannot be passed ref or out (except in a static constructor)
2
// Line: 23
3
4
class
B
5
{
6
public struct
A
7
{
8
public int
val
;
9
}
10
11
public static readonly
A a
=
new
A
();
12
}
13
14
class
C
15
{
16
static void
f
(
ref int
i
)
17
{
18
i
=
44
;
19
}
20
21
static void
Main
()
22
{
23
f
(
ref
B
.
a
.
val
);
24
}
25
}