<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0210</ErrorName>
  <Examples>
    <string>// CS0210: You must provide an initializer in a fixed or using statement declaration
// Line: 14

using System;

public class C : IDisposable
{
	public void Dispose ()
	{
	}

	static void Main ()
	{
		using (C a = new C (), b) {
		}
	}
}

</string>
    <string>// CS0210: You must provide an initializer in a fixed or using statement declaration
// Line: 7
// Compiler options: -unsafe

public class MainClass {
        unsafe static void Main () {
                fixed (int* p) {
                }
        }
}

</string>
    <string>// CS0210: You must provide an initializer in a fixed or using statement declaration
// Line: 8

using System.Resources;

public class MainClass {
        static void Main () {
                using (ResourceReader reader) {
                }
        }
}

</string>
  </Examples>
</ErrorDocumentation>