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-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs3005-11.cs
blob
be40f0bca0153c4ad8ddb9d3e1a4117603a23b1a
1
// cs3005-11.cs: Identifier `clsInterface' differing only in case is not CLS-compliant
2
// Line: 10
3
// Compiler options: -warnaserror
4
5
using
System
;
6
[
assembly
:
CLSCompliant
(
true
)]
7
8
public interface
CLSInterface
{
9
}
10
11
public class
clsInterface
:
CLSInterface
{
12
}