(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0135.cs
blob4c67abca7e10c1d54bb013efea981266e45fb2d1
1 // cs0135.cs: 'test' conflicts with the declaration 'ClassMain.test'
2 // Line: 11
4 class ClassMain {
5 static bool test = true;
7 public static void Main() {
8 if (true) {
9 bool test = false;
11 test = false;