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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0105-3.cs
blob
c320732972060f11ae9da9685b346cb6dd497ad8
1
// CS0105: The using directive for `N.M' appeared previously in this namespace
2
// Line: 8
3
// Compiler options: -warnaserror -warn:3
4
5
namespace
N
6
{
7
using
M
;
8
using
N
.
M
;
9
10
namespace
M
11
{
12
}
13
}