<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0156</ErrorName>
  <Examples>
    <string>// CS0156: A throw statement with no arguments is not allowed outside of a catch clause
// Line: 14

using System;

class Foo
{
	static void Main ()
	{
		try {
		    Console.WriteLine ("TEST");
		}
		finally {
			throw;
		}
	}
}
</string>
    <string>// CS0156: A throw statement with no arguments is not allowed outside of a catch clause
// Line: 12

using System;

class Foo
{
	static void Main ()
	{
		try {
			Console.WriteLine ("Test CS0156");
			throw;
		}
		catch {
		}			
	}
}
</string>
  </Examples>
</ErrorDocumentation>