blob: 65fc9075e7f1236abe24338c5653e5ee52e5b351 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS3003: Type of `I.this[bool]' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1
using System;
[assembly:CLSCompliant(true)]
public interface I {
ulong this[bool index] { get; }
}
|