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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0146-7.cs
blob
239c9f71195e1462ea2496afeb3943791bf3982a
1
// CS0146: Circular base class dependency involving `Generic<P>.Status' and `Generic<P>.Status'
2
// Line: 6
3
4
public class
Generic
<
P
>
5
{
6
public class
Status
:
Status
7
{
8
Status
(
Foo foo
) :
base
(
foo
)
9
{
10
}
11
}
12
}