Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / cattr-compile.cs
1 using System;
2
3 namespace Test {
4         [CLSCompliant(false)]
5         public class Test {
6                 [CLSCompliant(false)]
7                 public static int Main() {
8                         return 0;
9                 }
10         }
11 }