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
/
cs0260.cs
blob
69d6cce6f6114ba2ae3b7a6d90aec34e24076d21
1
// CS0260: Missing partial modifier on declaration of type `Foo'. Another partial declaration of this type exists
2
// Line: 3
3
public class
Foo
4
{ }
5
6
public partial class
Foo
7
{ }
8
9
class
X
10
{
11
static void
Main
()
12
{ }
13
}