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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs3015-2.cs
blob
382b2e869a70a0a390c957f27a007b0b3333c532
1
// cs3015-2.cs: `CLSAttribute' has no accessible constructors which use only CLS-compliant types
2
// Line: 7
3
4
using
System
;
5
[
assembly
:
CLSCompliant
(
true
)]
6
7
public class
CLSAttribute
:
Attribute
{
8
[
CLSCompliant
(
false
)]
9
public
CLSAttribute
(
string
array
) {
10
}
11
}