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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
gtest-066.cs
blob
37a169a4ea2a29bfd39dbc6bb588de88309cc3df
1
using
System
;
2
using
A
=
Test
;
3
4
public class
Foo
<
T
>
5
{
6
public class
Bar
<
U
>
7
{
8
}
9
}
10
11
namespace
Test
12
{
13
class
FooEx
<
V
,
W
> {}
14
}
15
16
class
X
17
{
18
public static void
Main
()
19
{
20
Console
.
WriteLine
(
typeof
(
Foo
<>));
21
Console
.
WriteLine
(
typeof
(
Foo
<>.
Bar
<>));
22
Console
.
WriteLine
(
typeof
(
Test
.
FooEx
<,>));
23
Console
.
WriteLine
(
typeof
(
A
::
FooEx
<,>));
24
}
25
}