2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3003-4.cs
blob65fc9075e7f1236abe24338c5653e5ee52e5b351
1 // CS3003: Type of `I.this[bool]' is not CLS-compliant
2 // Line: 9
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly:CLSCompliant(true)]
8 public interface I {
9 ulong this[bool index] { get; }