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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0118-7.cs
blob
cf69cfaab2c509c8806e1ab58c4e0e76417a3423
1
// CS0118: `Martin.Test' is a `namespace' but a `type' was expected
2
// Line: 15
3
using
System
;
4
using
Foo
;
5
6
namespace
Foo
7
{
8
public class
Test
:
Attribute
9
{
10
}
11
}
12
13
namespace
Martin
.
Test
14
{
15
[
Test
]
16
public class
X
17
{
18
}
19
}