<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1686</ErrorName>
  <Examples>
    <string>// cs1686.cs: Local variable `a' or its members cannot have their address taken and be used inside an anonymous method block
// Line: 11
// Compiler options: -unsafe

delegate void D ();

unsafe class X {
	public D T (int a)
	{
		return delegate {
			int *x = &amp;a;
		};
	}

	static void Main ()
	{ }
}
</string>
    <string>// cs1686.cs: Local variable `i' or its members cannot have their address taken and be used inside an anonymous method block
// Line: 16
// Compiler options: -unsafe

class X {
	delegate void S ();

	unsafe void M ()
	{
		int i;
		int * j ;

		S s = delegate {
			i = 1;
		};
		j = &amp;i;
	}

	static void Main () {}
}
</string>
  </Examples>
</ErrorDocumentation>