2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3011-1.cs
blob1c91ca4b76a873446ccc200e31d3f4b3dcf444c8
1 // CS3011: `CLSClass.this[long]': only CLS-compliant members can be abstract
2 // Line: 10
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly:CLSCompliant (true)]
8 public abstract class CLSClass {
9 [CLSCompliant (false)]
10 public abstract int this[long index] { set; }