<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS3022</ErrorName>
  <Examples>
    <string>// cs3022.cs: CLSCompliant attribute has no meaning when applied to parameters. Try putting it on the method instead
// Line: 8
// Compiler options: -warn:1 -warnaserror

using System;
[assembly: CLSCompliant (true)]

public class Class {
	public void Test ([CLSCompliant(false)] uint u) {
	}
}
</string>
  </Examples>
</ErrorDocumentation>