Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs0677-3.cs
1 // CS0677: `C<T>.t': A volatile field cannot be of the type `T'
2 // Line: 8
3
4 public class C<T>
5 {
6         volatile T t;
7 }