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
Make csproj target work again
[mcs.git]
/
errors
/
cs3005-12.cs
blob
c3cb31748e82d21578a392c26512a32fe4838b0b
1
// cs3005-12.cs: Identifier `CLSClass.NameAbC(int)' differing only in case is not CLS-compliant
2
// Line: 9
3
// Compiler options: -warnaserror
4
5
using
System
;
6
[
assembly
:
CLSCompliant
(
true
)]
7
8
public class
CLSClass
{
9
public int
NameABC
;
10
public static void
NameAbC
(
int
arg
) {}
11
}