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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs1676.cs
blob
47f5f8929394f49f1d859ea1fc6f818a01baa22d
1
// CS1676: Parameter `1' must be declared with the `out' keyword
2
// Line: 10
3
4
class
C
5
{
6
delegate int
D
(
out int
i
);
7
8
public static void
Main
()
9
{
10
D d
=
a
=>
1
;
11
}
12
}