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-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs0308-6.cs
blob
81b4ac31e6fd64279b553b4ca0b8a5c093ec78d2
1
// CS0308: The non-generic type `BaseGeneric<T>.InnerDerived' cannot be used with the type arguments
2
// Line: 19
3
4
class
BaseGeneric
<
T
>
5
{
6
public class
InnerDerived
7
{
8
}
9
}
10
11
class
BaseConcrete
:
BaseGeneric
<
string
>
12
{
13
}
14
15
class
Program
16
{
17
static void
Main
()
18
{
19
new
BaseConcrete
.
InnerDerived
<
int
>();
20
}
21
}