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-432.cs
blob
06fce357280ddecdb2e0010285d1e87aeb134542
1
using
foo
=
Foo
;
2
3
namespace
Foo
{
4
class
A { }
5
}
6
7
class
X
{
8
public static void
Main
()
9
{
10
Foo
.
A a
=
new
foo
::
A
();
11
System
.
Console
.
WriteLine
(
a
.
GetType
());
12
}
13
}