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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
test-externalias-09.cs
blob
10077a05d95ea159e937d92f6cff2beea09faf51
1
// Compiler options: -r:MyAssembly01=test-externalias-00-lib.dll
2
3
extern alias
MyAssembly01
;
4
using
System
;
5
6
using
SameNamespace
=
MyAssembly01
;
7
8
public class
Test
9
{
10
static int
Main
()
11
{
12
SameNamespace
.
GlobalClass
.
StaticMethod
();
13
return
0
;
14
}
15
}
16