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-912.cs
blob
3cda7a01c9a9c76aec322461b2f6e6c0773a1258
1
// Compiler options: -r:test-912-lib.dll
2
3
using
System
;
4
using
TypeLib
;
5
6
public class
Bar
7
{
8
public const ushort
FIELD
=
Foo
.
CONSTANT
;
9
10
public static int
Main
()
11
{
12
Console
.
WriteLine
(
FIELD
);
13
if
(
FIELD
!=
65535
)
14
return
1
;
15
16
return
0
;
17
}
18
}