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-862.cs
blob
2a9c433e6e5d9749c585228e2f76577e09932f48
1
class
op_Addition
2
{
3
public static int
Foo
=
42
;
4
5
public class
Builder
6
{
7
public int
Foo
8
{
9
get
{ return op_Addition.Foo; }
10
}
11
12
public static int operator
+ (
Builder a
,
Builder b
)
13
{
14
return
0
;
15
}
16
}
17
18
public static void
Main
()
19
{
20
var
x
=
new
Builder
().
Foo
;
21
}
22
}