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
/
cs0111-3.cs
blob
038b4075f8fc93f291c373fc3778cf53d21cfa64
1
// CS0111: A member `Class.op_Implicit(byte)' is already defined. Rename this member or use different parameter types
2
// Line: 9
3
4
public class
Class
{
5
static public implicit operator
Class
(
byte value
) {
6
return new
Class
();
7
}
8
9
public static void
op_Implicit
(
byte value
) {}
10
}