cs0677.cs 166 B

123456789101112
  1. // cs0677.cs: X.a volatile field can not be of type "A"
  2. // Line: 8
  3. using System;
  4. struct A { int a; }
  5. class X {
  6. public volatile A a;
  7. static void Main ()
  8. {
  9. }
  10. }