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
2008-09-29 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1510-3.cs
blob
7bd6460a3b6cfee117d071a4fba587f5045082e0
1
// cs1510-3.cs: A ref or out argument must be an assignable variable
2
// Line: 19
3
// this is bug #70402
4
5
using
System
;
6
7
class
T
{
8
9
enum
A { a, b }
10
11
static void
Convert
(
out
A a
)
12
{
13
a
=
A
.
a
;
14
}
15
16
static void
Main
()
17
{
18
int
a
=
0
;
19
Convert
(
out
(
A
)
a
);
20
}
21
}