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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0555.cs
blob
504918cf1de79b4fe3d761c979f7681a0194c0e9
1
// CS0555: User-defined operator cannot take an object of the enclosing type and convert to an object of the enclosing type
2
// Line : 8
3
4
class
Blah
{
5
6
public static void
Main
() {}
7
8
public static implicit operator
Blah
(
Blah i
) {}
9
10
}