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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
gtest-101.cs
blob
8d1ca1a992f53fce8973accfeeb7b303160b7e15
1
using
System
;
2
3
public class
Test
4
{
5
public static void
Main
()
6
{
7
SimpleStruct
<
string
>
s
=
new
SimpleStruct
<
string
> ();
8
}
9
}
10
11
public struct
SimpleStruct
<
T
>
12
{
13
T data
;
14
15
public
SimpleStruct
(
T data
)
16
{
17
this
.
data
=
data
;
18
}
19
}