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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
test-externalias-09.cs
blob
8ede921a872dd2282036061503dd1ad375a88d06
1
// Compiler options: -r:MyAssembly_01=test-externalias-00-lib.dll
2
3
extern alias
MyAssembly_01
;
4
using
System
;
5
6
using
SameNamespace
=
MyAssembly_01
;
7
8
public class
Test
9
{
10
public static int
Main
()
11
{
12
SameNamespace
.
GlobalClass
.
StaticMethod
();
13
return
0
;
14
}
15
}
16