repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
use MOONLIGHT symbol
[mcs.git]
/
tests
/
test-243.cs
blob
b8c9e9a826c8de1427b2f38cc22a553679df1db0
1
// Bug #57014.
2
using
System
;
3
4
public class
X
{
5
public const string
Address
=
null
;
6
7
public static bool
Resolve
(
string
addr
)
8
{
9
return true
;
10
}
11
12
static string
Test
()
13
{
14
return
Address
;
15
}
16
17
static void
Main
()
18
{
19
Resolve
(
Address
);
20
}
21
}