<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1519</ErrorName>
  <Examples>
    <string>// CS1519: Unexpected symbol `using' in class, struct, or interface member declaration
// Line: 5

class X { }
using System;
</string>
    <string>// CS1519: Unexpected symbol `unchecked' in class, struct, or interface member declaration
// Line: 6

class C
{   
	unchecked const decimal d = 79m;
}
</string>
    <string>// CS1519: Unexpected symbol `}' in class, struct, or interface member declaration
// Line: 7

public class Foo
{
	public f 
}</string>
    <string>// CS1519: Unexpected symbol `;' in class, struct, or interface member declaration
// Line: 8

class C
{
    public static void Main ()
    {
    };
}
</string>
    <string>// CS1519: Unexpected symbol `extern' in class, struct, or interface member declaration
// Line: 5

public class Test {}
extern alias Hey;
</string>
  </Examples>
</ErrorDocumentation>