<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0676</ErrorName>
  <Examples>
    <string>// Compiler options: -unsafe

unsafe class XX {
	static volatile int j;

	static void X (ref int a)
	{
	}
	
	static void Main ()
	{
		X (ref j);
	}
}
</string>
    <string>// Compiler options: -unsafe

unsafe class X {
	static volatile int j;
	
	static void Main ()
	{
		fixed (int *p = &amp;j){
			
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>