(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1612-2.cs
blob6ae163acb1207661db84fcb714c87b9f0110d17b
1 using System;
2 class X {
3 static void Main ()
6 P.x = 10;
7 Console.WriteLine ("Got: " + P.x);
10 static G P {
11 get {
12 return g;
16 static G g = new G ();
18 struct G {
19 public int x;