<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0201</ErrorName>
  <Examples>
    <string>//
// cs0201.cs: if a meaningless statement is encountered error cs0201 have to be thrown
//

using System;

public class X
{
	public static void Main ()
	{
		2 * 3;
	}
}
</string>
  </Examples>
</ErrorDocumentation>