<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS3015</ErrorName>
  <Examples>
    <string>// CS3015: `CLSAttribute' has no accessible constructors which use only CLS-compliant types
// Line: 8
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant (true)]

public class CLSAttribute: Attribute {
       private CLSAttribute(int arg) {
       }
}
</string>
    <string>// CS3015: `CLSAttribute' has no accessible constructors which use only CLS-compliant types
// Line: 8
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant (true)]

public class CLSAttribute: Attribute {
    [CLSCompliant (false)]
    public CLSAttribute(string array) {
    }
}
</string>
    <string>// CS3015: `CLSAttribute' has no accessible constructors which use only CLS-compliant types
// Line: 8
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant (true)]

public class CLSAttribute: Attribute {
   public CLSAttribute(string[] array) {
   }
}
</string>
  </Examples>
</ErrorDocumentation>