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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0426-3.cs
blob
578efcc694a5726e14434fbe77875fe9bf93ad50
1
// CS0426: The nested type `Foo' does not exist in the type `C<int>'
2
// Line: 11
3
4
public abstract class
B
<
T
>
5
{
6
public class
Foo
7
{
8
}
9
}
10
11
public class
C
<
T
> :
B
<
C
<
int
>.
Foo
>
12
{
13
}