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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs3005-12.cs
blob
81dfe85d19655134aa8e5343f8cdea05965e08f2
1
// CS3005: 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
}