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
2009-01-24 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-260.cs
blob
84e770046bc069af60c97708b6f62727c5e90ccf
1
using
x
;
2
using
y
;
3
using
Test
=
x
.
Test
;
4
5
namespace
x
6
{
7
public class
Test
8
{ }
9
}
10
11
namespace
y
12
{
13
public class
Test
14
{ }
15
}
16
17
namespace
b
18
{
19
public class
a
20
{
21
public static void
Main
()
22
{
23
// Test should be an alias to x.Test
24
Test test
=
new
Test
();
25
}
26
}
27
}