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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs3012.cs
blob
7633f5579409d63e1f2f475ca38cb18421e4ef27
1
// CS3012: 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
}