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-151.cs
blob
247b330c224aa7d13378e204abce2c6cd85d31cb
1
class
Test
<
T
>
where T
:
struct
{
2
public
Test
(){
3
T s
=
new
T
();
4
}
5
}
6
7
class
X
8
{
9
public static int
Main
()
10
{
11
new
Test
<
bool
> ();
12
return
0
;
13
}
14
}
15