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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-818.cs
blob
f3b89e5001baf762258b4d2a71c291f729d112ca
1
using
System
;
2
3
namespace
A { class CAttribute : Attribute { }
}
4
namespace
B { class CAttribute : Attribute { }
}
5
6
namespace
Foo
7
{
8
using
A
;
9
using
B
;
10
11
using
C
=
A
.
CAttribute
;
12
13
[
C
]
14
class
Foo
15
{
16
public static void
Main
()
17
{
18
}
19
}
20
}