Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-cls-16.cs
blob19c81940b28cf65b22ce8475a314fa135106b47b
1 // Compiler options: -warnaserror
3 using System;
4 [assembly:CLSCompliant (true)]
6 [CLSCompliant (false)]
7 [CLSAttribute (new bool [] {true, false})]
8 public class CLSAttribute: Attribute {
9 public CLSAttribute(bool[] array) {
13 public class ClassMain {
14 public static void Main () {}