<?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>CS0067</ErrorName>
  <Examples>
    <string>// cs0067: The event `Foo.OnFoo' is never used
// Line: 12
// Compiler options: -warnaserror -warn:4

using System;

class ErrorCS0067 {
	public delegate void FooHandler ();
}

class Foo {
	private event ErrorCS0067.FooHandler OnFoo;
	
	public static void Main () {
	}
}

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