repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cosmetic
[mcs.git]
/
tests
/
gtest-362.cs
blob
63ea5148fc3fde9b611f8b3ff8d5b7b37b499a3f
1
class
C
2
{
3
static void
Assert
<
T
> (
T a
)
4
{
5
}
6
7
static void
Assert
<
T
> (
T a
,
T b
)
8
{
9
}
10
11
public static int
Main
()
12
{
13
Assert
(
new object
[,]
{ { 1, 2 }
,
{ "x", "z" }
});
14
Assert
(
new object
(),
"a"
);
15
16
return
0
;
17
}
18
}