<?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>CS3017</ErrorName>
  <Examples>
    <string>// CS3017: You cannot specify the CLSCompliant attribute on a module that differs from the CLSCompliant attribute on the assembly
// Line: 7
// Compiler options: -warnaserror -warn:1

using System;

[module: CLSCompliant (true)]
[assembly: CLSCompliant (false)]

class Test
{
}
</string>
  </Examples>
</ErrorDocumentation>