<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0212</ErrorName>
  <Examples>
    <string>// cs0212-2.cs: You can only take the address of unfixed expression inside of a fixed statement initializer
// Line: 17
// Compiler options: -unsafe

using System;

unsafe class X {
	static void Main ()
	{
		int foo = 0;
		Blah (ref foo);

	}
	
	static void Blah (ref int mptr)
	{
		int* x = &amp;mptr;
	}
}
</string>
    <string>// cs0212-3.cs: You can only take the address of unfixed expression inside of a fixed statement initializer
// Line: 10
// Compiler options: -unsafe

struct Foo {
	public float f;
	public void foo ()
	{
		unsafe {
			float *pf1 = &amp;f;
		}
	}
}

class Test {
	static void Main ()
	{
		Foo x = new Foo ();
		x.foo ();
	}
}
</string>
    <string>// cs0212.cs: You can only take the address of unfixed expression inside of a fixed statement initializer
// Line: 19
// Compiler options: -unsafe

using System;

class X
{
	public int x;
	public X ()
	{
		this.x = 4;
	}

	public unsafe static void Main ()
	{
		X x = new X ();
		int *p = &amp;x.x;
	}
}
</string>
  </Examples>
</ErrorDocumentation>