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
2010-04-13 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
test-429.cs
blob
0a137419ba3063bc1572d7deb977988a0861aeee
1
// Compiler options: -warn:0
2
3
using global
=
Foo
;
4
5
namespace
Foo
{
6
class
A { }
7
}
8
9
class
A { }
10
11
class
X
{
12
static void
Main
()
13
{
14
A a
=
new global
::
A
();
15
System
.
Console
.
WriteLine
(
a
.
GetType
());
16
}
17
}