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 #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs7003.cs
blob
efa2ef04f8e560663510056d3246cfcc9f4c8e05
1
// CS7003: Unbound generic name is not valid in this context
2
// Line: 17
3
4
using
System
;
5
6
class
C
<
T
>
7
{
8
public class
G
<
U
>
9
{
10
}
11
}
12
13
class
M
14
{
15
public static void
Main
()
16
{
17
Type t
=
typeof
(
C
<
int
>.
G
<>);
18
}
19
}