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
/
cs0261.cs
blob
3e0a9945e0521d5bb2081a5132b0dba8dfb45425
1
// CS0261: Partial declarations of `Foo' must be all classes, all structs or all interfaces
2
// Line: 6
3
partial class
Foo
4
{ }
5
6
partial struct
Foo
7
{ }
8
9
class
X
10
{
11
static void
Main
()
12
{ }
13
}