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-741.cs
blob
50326261c2f6cd84901e3e6b18f1ecf761d4b6ad
1
// Compiler options: -r:test-741-lib.dll
2
3
class
Test
4
{
5
void
test
()
6
{
7
IFoo f
=
null
;
8
int
v
=
f
.
Prop
;
9
f
.
NestedProp
=
4
;
10
}
11
12
public static void
Main
()
13
{
14
}
15
}