<?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>CS0677</ErrorName>
  <Examples>
    <string>// CS0677: `X.d': A volatile field cannot be of the type `double'
// Line: 6

class X
{
	public volatile double d;
}
</string>
    <string>// cs0677.cs: `X.a': A volatile field cannot be of the type `A'
// Line: 8
using System;

struct A { int a; }

class X {
	public volatile A a;
	static void Main ()
		{
		}
}
</string>
  </Examples>
</ErrorDocumentation>