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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0553-2.cs
blob
c8b48f371e81f597a2e10fe38007ff0939ef330a
1
// CS0553: User-defined conversion `plj.aClass.implicit operator plj.aClass(object)' cannot convert to or from a base class
2
// Line: 10
3
4
using
System
;
5
6
namespace
plj
7
{
8
public abstract class
aClass
9
{
10
public static implicit operator
aClass
(
object
o
)
11
{
12
return null
;
13
}
14
}
15
}