<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0074</ErrorName>
  <Examples>
    <string>// CS0074: `ErrorCS0074.OnFoo': abstract event cannot have an initializer
// Line: 8

using System;

abstract class ErrorCS0074 {
	public delegate void Handler ();
	public abstract event Handler OnFoo = null;
	public static void Main () {
	}
}

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