(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs3016-2.cs
blob84db73dd9e3e9542889a1a9fd1c8378d0ed3e60c
1 // cs3016.cs: Arrays as attribute arguments are not CLS-compliant
2 // Line: 5
4 using System;
5 [assembly:CLSAttribute (new bool [] {true, false})]
6 [assembly:CLSCompliant (true)]
8 public class CLSAttribute: Attribute {
9 public CLSAttribute () {
12 public CLSAttribute(bool[] array) {