repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0537.cs
blob
393763bcbd5a2f693b7296e7cadd011724b5a08e
1
// cs0537.cs: 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