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
2010-04-13 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
gtest-238.cs
blob
24e48d34dcc17529b3b07a15e23ee5389b941fe3
1
// Compiler options: /r:gtest-238-lib.dll
2
// Dependencies: gtest-238-lib.cs
3
class
X
4
{
5
static int
Main
()
6
{
7
Foo
<
long
>
foo
=
new
Foo
<
long
> ();
8
if
(
foo
.
Test
(
3
) !=
1
)
9
return
1
;
10
if
(
foo
.
Test
(
5L
) !=
2
)
11
return
2
;
12
return
0
;
13
}
14
}