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
/
cs0663.cs
blob
6ceba8fd51ddb551aa9f4226f598b2d9e950cf24
1
// CS0663: Overloaded method `WrongInterface.Test(ref int)' cannot differ on use of parameter modifiers only
2
// Line: 6
3
4
public interface
WrongInterface
{
5
int
Test
(
out int
obj
);
6
int
Test
(
ref int
obj
);
7
}