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-12-12 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
tests
/
test-327.cs
blob
91df691e6387bc0a01e3d937d42db61603f3272e
1
class
X2
{}
2
namespace
A
{
3
enum
X1 { x1 }
;
4
enum
X2 { x2 }
;
5
}
6
namespace
A
.
B
{
7
using
Y1
=
X1
;
8
using
Y2
=
X2
;
9
class
Tester
{
10
internal static
Y1 y1
=
Y1
.
x1
;
11
internal static
Y2 y2
=
Y2
.
x2
;
12
static void
Main
()
{ }
13
}
14
}