repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1656-5.cs
blob
763626bf55c09157b6b356cd5d74f5025dd08cbb
1
// CS1656: Cannot assign to `Method_1' because it is a `method group'
2
// Line: 14
3
4
public class
Test
5
{
6
void
Method_1
()
7
{
8
}
9
10
public static void
Main
()
11
{
12
Test t
=
new
Test
();
13
14
t
.
Method_1
+=
delegate
{ }
;
15
}
16
}