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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-755.cs
blob
038e92fbbf5a8b4e5172de8f63fc003277a05e8a
1
class
Item
2
{
3
public static int
Foo
=
42
;
4
5
public class
Builder
6
{
7
public int
Foo
8
{
9
get
{ return Item.Foo; }
10
}
11
12
public object this
[
int
field
]
13
{
14
get
{ return null; }
15
}
16
17
public object this
[
int
field
,
int
i
]
18
{
19
get
{ return null; }
20
}
21
}
22
}
23
24
class
Program
25
{
26
public static void
Main
()
27
{
28
}
29
}