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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0763.cs
blob
e9f83a681839f042a06fd4773286e3a7aa3651a1
1
// CS0763: A partial method declaration and partial method implementation must be both `static' or neither
2
// Line: 11
3
4
5
public partial class
C
6
{
7
static partial void
Foo
()
8
{
9
}
10
11
partial void
Foo
();
12
}