<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0821</ErrorName>
  <Examples>
    <string>// CS0821: A fixed statement cannot use an implicitly typed local variable
// Line: 9
// Compiler options: -unsafe

public class Point
{
	public int X;
	public int Y;
}

public class Test
{
	unsafe static void Main ()
	{
		Point p = new Point ();
		p.X = 42;
		p.Y = 16;
		
		fixed (var x = &amp;p.X)
		{
		}
	}
}

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