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
2010-03-30 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0579-6.cs
blob
fb142f569dc7d76364086b8848ffe452b15b8d9e
1
// cs0579.cs: 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
}