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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0118-2.cs
blob
648ca4876af9b7b1a0bdba3a3c20954b08f0298f
1
// CS0118: `A.B' is a `namespace' but a `type' was expected
2
// Line: 9
3
// Compiler options: -r:CS0118-2-lib.dll
4
5
using
A
.
B
.
C
;
6
7
namespace
A
.
D
{
8
class
Test
{
9
static public void
Main
()
10
{
11
B c
=
new
B
();
12
}
13
}
14
}