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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0529-2.cs
blob
bf88f3a466bd18534d2c80dc6183aad5764ab73f
1
// CS0529: Inherited interface `IB' causes a cycle in the interface hierarchy of `IC'
2
// Line: 12
3
4
interface
IC
:
IB
5
{
6
}
7
8
partial interface
IB
9
{
10
}
11
12
partial interface
IB
:
IC
13
{
14
}
15