blob: 0b53ef4dc6892b00f37f7ec8e3482eeca4c3e22c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Compiler options: -warnaserror
using System;
[assembly:CLSCompliant (true)]
[CLSCompliant (false)]
public interface I {
[CLSCompliant (false)]
void Error (ulong arg);
}
[CLSCompliant (false)]
public interface I2 {
#pragma warning disable 3018
[CLSCompliant (true)]
void Error (long arg);
#pragma warning disable 3018
}
public class MainClass {
public static void Main () {
}
}
|