<?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>CS0211</ErrorName>
  <Examples>
    <string>// cs0211.cs: Cannot take the address of the given expression
// Line: 7
// Compiler options: -unsafe

class UnsafeClass {
        unsafe UnsafeClass () {
                fixed (int* a = &amp;(2)) {}
        }
}

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