repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
test-625.cs
blob
b48bc1893f7d6a1b4871bf791bceae2659ff16d9
1
//
2
// fixed
3
//
4
class
Location
{
5
static public int
Null
{
6
get
{
7
return
1
;
8
}
9
}
10
}
11
12
class
X
{
13
Location Location
;
14
X
()
15
{
16
int
a
=
Location
.
Null
;
17
}
18
19
static void
Main
() {}
20
}
21
22
23