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
2010-04-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0146-4.cs
blob
a9ef8378383731d67df4b6bb0543f1327fbeb712
1
// cs0146-4.cs: Circular base class dependency involving `Foo.Bar' and `Foo'
2
// Line: 5
3
4
class
Foo
:
Baz
{
5
public class
Bar
{}
6
}
7
class
Baz
:
Foo
.
Bar
{}