<?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>CS0658</ErrorName>
  <Examples>
    <string>// CS0658: `class' is invalid attribute target. All attributes in this attribute section will be ignored
// Line : 8
// Compiler options: -warnaserror -warn:1

using System;

[class:Serializable]
public class C
{
    public static void Main () {}
}
</string>
    <string>// CS0658: `blah' is invalid attribute target. All attributes in this attribute section will be ignored
// Line : 9
// Compiler options: -warnaserror -warn:1

public class MyClass {

	delegate int MyDelegate (int i, int j);
	
	[blah:Help("blah")]
	public static MyClass operator/ (MyClass i, MyClass j)
	{
	
	}

	public static implicit operator MyClass (Object o)
	{

	}
}
</string>
  </Examples>
</ErrorDocumentation>