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
remove NotWorking
[mcs.git]
/
tests
/
test-anon-01.cs
blob
0bb2390c698174b82f9d4c2e97d8946e02380300
1
delegate void
S
();
2
3
class
X
{
4
5
//
6
// DO NOT ADD ANYTHING ELSE TO THIS TEST
7
//
8
static int
Main
()
9
{
10
int
a
;
11
12
S b
=
delegate
{
13
a
=
2
;
14
};
15
16
return
0
;
17
}
18
}