<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8208</ErrorName>
  <Examples>
    <string>// CS8208: The type `dynamic' pattern matching is not allowed
// Line: 9

static class Program
{
	public static void Main ()
	{
		object o = null;            
		if (o is dynamic res) {
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>