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-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs3024.cs
blob
ed25779095b9178b536dd836f6a458cc2e4f2d37
1
// CS3024: Constraint type `I' is not CLS-compliant
2
// Line: 13
3
// Compiler options: -warn:1 -warnaserror
4
5
using
System
;
6
[
assembly
:
CLSCompliant
(
true
)]
7
8
[
CLSCompliant
(
false
)]
9
public interface
I
10
{
11
}
12
13
public class
C
<
T
>
where T
:
I
14
{
15
}
16