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
update readme (#21797)
[mono-project.git]
/
mcs
/
tests
/
gtest-456.cs
blob
93c9b41b3b3602136fac80aa3b91aaaec224d2b8
1
using
System
;
2
3
class
G
<
T
>
4
{
5
public struct
S
6
{
7
public string
Test
()
8
{
9
return
GetType
().
ToString
();
10
}
11
}
12
}
13
14
class
C
15
{
16
public static int
Main
()
17
{
18
string
s
=
new
G
<
int
>.
S
().
Test
();
19
if
(
s
!=
"G`1+S[System.Int32]"
)
20
return
1
;
21
22
return
0
;
23
}
24
}