repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1671-2.cs
blob
35c611c643e9d4928e59ee64d82f7c2983e5b596
1
// cs1671-2.cs: A namespace declaration cannot have modifiers or attributes
2
// Line : 14
3
4
using
System
;
5
6
[
assembly
:
CLSCompliant
(
false
)]
7
8
namespace
N
9
{
10
}
11
12
[
assembly
:
Obsolete
]
13
14
namespace
M
15
{
16
}
17
18
public class
C
{
19
public static void
Main
() {}
20
}