cleol
[mcs.git] / tests / test-701.cs
blob5698f68ba72213356e6e91f428adfd2b97056893
1 // Compiler options: -warnaserror -warn:4
3 using System;
5 [assembly: CLSCompliant (true)]
7 public class Foo
9 #pragma warning disable 3019
10 [CLSCompliant (false)]
11 #pragma warning restore 3019
12 internal ushort ToUint16 ()
14 return ushort.MaxValue;
17 static void Main ()