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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0537.cs
blob
23bc94c4bad3e08da90d2b104c09a2f67eddaf69
1
// CS0537: The class System.Object cannot have a base class or implement an interface
2
// Line: 5
3
4
namespace
System
{
5
class
Object
:
ICloneable
{
6
}
7
}
8
9
10