[mcs] C# 7 tuple (foundation only).
[mono.git] / mcs / errors / cs0677-2.cs
1 // CS0677: `X.d': A volatile field cannot be of the type `double'
2 // Line: 6
3
4 class X
5 {
6         public volatile double d;
7 }