[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-901.cs
blobbdd7d076ce71f107388f2bc6024290c9a014d6ad
1 using System;
3 class X
5 public static void Main ()
7 int i;
8 if (true) {
9 i = 3;
12 Console.WriteLine (i);
14 int i2;
15 if (false) {
16 throw new ApplicationException ();
17 } else {
18 i2 = 4;
21 Console.WriteLine (i2);