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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0118-2.cs
blob
5b7787ad69f970b23074302b213a9c43f664430c
1
// cs0118-2.cs: `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
}