Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-915.cs
1 class ClassMain
2 {
3         static bool test = true;
4
5         public static void Main ()
6         {
7                 if (true) {
8                         const int test = 0;
9                 }
10                 test = false;
11         }
12 }
13