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
/
cs0019-56.cs
blob
ab3a191262e85888712ae166cc60caefb91a5f24
1
// CS0019: Operator `+' cannot be applied to operands of type `Program' and `Program'
2
// Line: 8
3
4
public class
Program
5
{
6
static void
Main
()
7
{
8
Program b
=
default
(
Program
) +
default
(
Program
);
9
}
10
}