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 #4178 from ntherning/fix-broken-windows-build
[mono-project.git]
/
mono
/
tests
/
largeexp2.cs
blob
4df201deb1ae624bdd1da228720f800ebe066986
1
using
System
;
2
3
class
Test
{
4
5
private long
res
=
0
;
6
7
void
test
()
8
{
9
long
a
=
1
,
b
=
2
;
10
11
res
=
2
*
a
+
3
*
b
;
12
}
13
14
static int
Main
()
15
{
16
Test x
=
new
Test
();
17
18
x
.
test
();
19
20
Console
.
WriteLine
(
x
.
res
);
21
22
if
(
x
.
res
!=
8
)
23
return
1
;
24
25
return
0
;
26
}
27
}