<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0677</ErrorName>
  <Examples>
    <string>// CS0677: `X.e': A volatile field cannot be of the type `E'
// Line: 10

enum E : long
{
}

class X
{
	volatile E e;
}
</string>
    <string>// CS0677: `C&lt;T&gt;.t': A volatile field cannot be of the type `T'
// Line: 8

public class C&lt;T&gt;  where T : struct
{
	volatile T t;
}
</string>
    <string>// CS0677: `X.d': A volatile field cannot be of the type `double'
// Line: 6

class X
{
	public volatile double d;
}
</string>
    <string>// CS0677: `C&lt;T&gt;.t': A volatile field cannot be of the type `T'
// Line: 8

public class C&lt;T&gt;
{
	volatile T t;
}
</string>
    <string>// CS0677: `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>