copied mono-api-diff.cs from mono-2-2 branch so new patch can be applied and history...
[mono.git] / mcs / tests / test-cls-17.cs
1 // This code issues CS3014 error in csc ersion 1.1
2
3 using System;
4
5 [assembly: CLSCompliant(false)]
6
7 [CLSCompliant(true)]
8 public class Foo {
9         public static void Main () {}
10 }