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
2009-07-16 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-anon-77.cs
blob
aa590d111d4dceeb5d19e02df5bf6ddd3a9a960a
1
using
System
;
2
3
delegate void
D
();
4
5
public class
y
6
{
7
bool
[]
xs
;
8
public bool this
[
int
n
]
9
{
10
get
{
11
D d
=
delegate
()
{ n = 1; }
;
12
return true
;
13
}
14
15
set
{ xs [n] = value; }
16
}
17
18
public static void
Main
()
19
{
20
}
21
}