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-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0119-3.cs
blob
d70774df59a0c5f60c0f32fb68e3d6bcd07d2788
1
// CS0119: Expression denotes a `variable', where a `method group' was expected
2
// Line: 11
3
4
using
System
;
5
6
class
X
7
{
8
static void
Main
()
9
{
10
Delegate d
=
null
;
11
Console
.
WriteLine
(
d
(
null
,
null
));
12
}
13
}