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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
test-243.cs
blob
d2731a9791d6149913c3736186b27f8ba05b07b1
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
public static void
Main
()
18
{
19
Resolve
(
Address
);
20
}
21
}