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
* ResolvedReference.cs (.ctor): Set 'OriginalItemSpec' and 'ResolvedFrom',
[mcs.git]
/
tests
/
gtest-anon-51.cs
blob
09c6d122e3ae6f39acbf7fa94fdf1cf05ea485b0
1
using
System
;
2
3
public delegate void
Bla
();
4
5
public class
Driver
6
{
7
static int
Main
()
8
{
9
new
Driver
().
Repro
();
10
return
0
;
11
}
12
13
void
P
(
int
a
,
int
b
) {}
14
15
void
Repro
()
16
{
17
int
a
= -
1
;
18
int
b
=
10
;
19
20
P
(
b
,
a
++);
21
22
Bla c
= () =>
P
(
b
, ++
a
);
23
24
P
(
b
,
a
++);
25
}
26
27
}