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-751.cs
blob
5097a7cd5d32cbb19ff8bf9b6d59621476cd9a17
1
using
SomeOtherNS
;
2
using
LocalNS
;
3
using
OneMoreNS
;
4
5
namespace
SomeOtherNS
.
Compiler
6
{
7
}
8
9
namespace
OneMoreNS
.
Compiler
10
{
11
}
12
13
namespace
LocalNS
14
{
15
public class
Compiler
16
{
17
}
18
}
19
20
namespace
System
.
Local
21
{
22
class
M
23
{
24
public static void
Main
()
25
{
26
Compiler c
=
new
LocalNS
.
Compiler
();
27
}
28
}
29
}