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
/
cs1628-2.cs
blob
b8a24862288f37513b51e192fa324bed52e38c16
1
// CS1628: Parameter `i' cannot be used inside `anonymous method' when using `ref' or `out' modifier
2
// Line: 8
3
4
public class
Test
{
5
public void
test
(
out int
i
) {
6
i
=
0
;
7
System
.
EventHandler test
=
delegate
{
8
i
++;
9
};
10
}
11
}
12
13
14
15
16