<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS3019</ErrorName>
  <Examples>
    <string>// CS3019: CLS compliance checking will not be performed on `CLSClass.Foo()' because it is not visible from outside this assembly
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant (true)]

public partial class CLSClass
{
	[CLSCompliant (false)]
	partial void Foo ();
	
	partial void Foo ()
	{
	}
}
</string>
    <string>// CS3019: CLS compliance checking will not be performed on `CLSClass' because it is not visible from outside this assembly
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (false)]
class CLSClass {
}</string>
    <string>// CS3019: CLS compliance checking will not be performed on `CLSClass' because it is not visible from outside this assembly
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (true)]
class CLSClass {
}</string>
    <string>// CS3019: CLS compliance checking will not be performed on `T' because it is not visible from outside this assembly
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant(true)]

public class CLSClass&lt;[CLSCompliant (false)] T&gt;
{
}</string>
  </Examples>
</ErrorDocumentation>