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
2007-05-25 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
tests
/
test-434.cs
blob
c2e022d8cf39da6921675960f86ee85b16d01e06
1
using
foo
=
Foo
;
2
3
namespace
Foo
{
4
class
A { }
5
}
6
7
class
X
{
8
static
Foo
.
A a
=
new
foo
::
A
();
9
static void
Main
()
10
{
11
System
.
Console
.
WriteLine
(
a
.
GetType
());
12
}
13
}