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-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0119-6.cs
blob
1547d3e887621c3d5c2794924293ed150fc9f787
1
// CS0119: Expression denotes a `variable', where a `type' or `method group' was expected
2
// Line: 10
3
4
delegate void
D
();
5
6
class
C
7
{
8
public void
Foo
(
int
i
)
9
{
10
D d
=
new
D
(
i
);
11
}
12
}