<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0825</ErrorName>
  <Examples>
    <string>// CS0825: The contextual keyword `var' may only appear within a local variable declaration
// Line: 9


public class Test
{
	event var v;
}

</string>
    <string>// CS0825: The contextual keyword `var' may only appear within a local variable declaration
// Line: 9


public class Test
{
	var v = "a";
}

</string>
    <string>// CS0825: The contextual keyword `var' may only appear within a local variable declaration
// Line: 9


public class Test
{
	const var v = 9;
}

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