repo.or.cz
/
mono.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-01-04 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git]
/
mono
/
tests
/
inctest.cs
blob
276f3c5bff6f450bd040466a55b20db3b96b16f7
1
using
System
;
2
3
class
Test
{
4
int
i
;
5
6
int
Foo
()
7
{
8
i
=
3
;
9
return
(
i
++) + (
i
++);
10
}
11
12
13
public static int
Main
()
14
{
15
Test t
=
new
Test
();
16
if
(
t
.
Foo
() !=
7
)
17
return
1
;
18
19
return
0
;
20
}
21
}