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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0556.cs
blob
36ff437d65b00129bb0b74b473e12eaf963c7001
1
// cs0556.cs : User-defined conversion must convert to or from the enclosing type
2
// Line : 8
3
4
class
Blah
{
5
6
public static void
Main
() {}
7
8
public static implicit operator int
(
int
i
) {}
9
10
}