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
/
cs1031-3.cs
blob
3126dfaa48babfd0ef356ac5cae5f4fb141a0354
1
// CS1031: Type expected
2
// Line: 16
3
4
public class
B
<
Y
>
where Y
:
B
<
Y
>
5
{
6
}
7
8
public class
A
<
X
>:
B
<
A
<
X
>>
9
{
10
}
11
12
public class
Repro
13
{
14
public static void
Main
(
string
[]
args
)
15
{
16
var
h
=
typeof
(
B
<
A
<>>);
17
}
18
}