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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs1671-2.cs
blob
2ddf12d2c117ee3dfe08f808f6b6eb4ed4f176d0
1
// CS1671: 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
}