Merge pull request #5390 from kumpera/fix_58637
[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 }