<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8311</ErrorName>
  <Examples>
    <string>// CS8311: Cannot use a default literal as an argument to a dynamically dispatched operation
// Line: 10
// Compiler options: -langversion:latest

class C
{
    static void Main ()
    {
        dynamic d = null;
        d.M2 (default);
    }
}</string>
  </Examples>
</ErrorDocumentation>