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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-625.cs
blob
01177eb188092b87a898cdca1591f811b927fa5a
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
public static void
Main
() {}
20
}
21
22
23