<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS3012</ErrorName>
  <Examples>
    <string>// CS3012: You must specify the CLSCompliant attribute on the assembly, not the module, to enable CLS compliance checking
// Line: 7
// Compiler options: -warnaserror

using System;

[module: CLSCompliant(true)]

public class ClsMain {
        public static void Main () {}
}</string>
  </Examples>
</ErrorDocumentation>