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-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0529.cs
blob
03bc988d5b33d0d6a5913a0f3bb20748b1b2eaa8
1
// cs0529.cs: Inherited interface `A' causes a cycle in the interface hierarchy of `C'
2
// Line: 10
3
4
interface
A
:
B
{
5
}
6
7
interface
B
:
C
{
8
}
9
10
interface
C
:
A
{
11
}