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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0762-2.cs
blob
5b36970899600c30a308749e7f9f332455406da6
1
// CS0762: Cannot create delegate from partial method declaration `C.Foo()'
2
// Line: 12
3
4
partial class
C
5
{
6
delegate void
D
();
7
8
partial void
Foo
();
9
10
void
Test
()
11
{
12
D d
=
Foo
;
13
}
14
}