<?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>CS1614</ErrorName>
  <Examples>
    <string>// cs1614.cs: `A' is ambiguous between `A' and `AAttribute'. Use either `@A' or `AAttribute'
// Line: 6
// Bug #56456

using System;
public class A : Attribute {
	[A]
	public static void Main() {
	}
}
public class AAttribute : Attribute {}
</string>
  </Examples>
</ErrorDocumentation>