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-06-05 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0750.cs
blob
7fca888b21ef99443214d15f13d74577e8efd599
1
// CS0750: A partial method cannot define access modifier or any of abstract, extern, new, override, sealed, or virtual modifiers
2
// Line: 7
3
4
5
public partial class
C
6
{
7
private partial void
Foo
()
8
{
9
}
10
}