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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs3011-1.cs
blob
1c91ca4b76a873446ccc200e31d3f4b3dcf444c8
1
// CS3011: `CLSClass.this[long]': only CLS-compliant members can be abstract
2
// Line: 10
3
// Compiler options: -warnaserror -warn:1
4
5
using
System
;
6
[
assembly
:
CLSCompliant
(
true
)]
7
8
public abstract class
CLSClass
{
9
[
CLSCompliant
(
false
)]
10
public abstract int this
[
long
index
]
{ set; }
11
}
12