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 #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
gtest-556.cs
blob
1c85a6d4c069f2b7b49f68502416f7e602a756ec
1
// Compiler options: -r:gtest-556-lib.dll
2
3
using
System
;
4
5
class
A2
6
{
7
public class
N
<
T
>
8
{
9
public static
N
<
T
>
Method
()
10
{
11
return default
(
N
<
T
>);
12
}
13
}
14
}
15
16
class
Test
17
{
18
public static int
Main
()
19
{
20
A2
.
N
<
short
>
b1
=
A2
.
N
<
short
>.
Method
();
21
A
.
N
<
byte
>
b2
=
A
.
N
<
byte
>.
Method
();
22
23
return
0
;
24
}
25
}