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 #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
tests
/
gtest-145.cs
blob
66a65dc17a378a86376de8e7a355cbb3c7f21ad8
1
using
System
;
2
public class
Test
<
T
>{
3
private
T
[,]
data
;
4
public
Test
(
T
[,]
data
){
5
this
.
data
=
data
;
6
}
7
}
8
public class
Program
{
9
public static void
Main
(
string
[]
args
){
10
Test
<
double
>
test
=
new
Test
<
double
>(
new double
[
2
,
2
]);
11
}
12
}
13