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-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs3012.cs
blob
b9f34d6654cdeadc26f538429cbff98d590dbbcc
1
// cs3012.cs: You must specify the CLSCompliant attribute on the assembly, not the module, to enable CLS compliance checking
2
// Line: 7
3
// Compiler options: -warnaserror
4
5
using
System
;
6
7
[
module
:
CLSCompliant
(
true
)]
8
9
public class
ClsMain
{
10
public static void
Main
() {}
11
}