<?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>CS0420</ErrorName>
  <Examples>
    <string>// CS0420: `XX.j': A volatile field references will not be treated as volatile
// Line: 14
// Compiler options: -unsafe /warnaserror /warn:1

unsafe class XX {
	static volatile int j;

	static void X (ref int a)
	{
	}
	
	static void Main ()
	{
		X (ref j);
	}
}
</string>
    <string>// CS0420: `X.j': A volatile field references will not be treated as volatile
// Line: 10
// Compiler options: -unsafe /warnaserror /warn:1

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