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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0579-6.cs
blob
dd6e3b4987ff0ae7d9cff2c011a7dfb580e7cd9d
1
// CS0579: The attribute `System.CLSCompliantAttribute' cannot be applied multiple times
2
// Line : 10
3
4
using
System
;
5
6
[
assembly
:
CLSCompliant
(
true
)]
7
8
namespace
DuplicateAttributes
{
9
[
CLSCompliant
(
true
)]
10
[
CLSCompliant
(
true
)]
11
public class
ClassA
{}
12
}