[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-514.cs
bloba1c1e7b4d7256c73f354a387fdc78b015bf1963f
1 // Compiler options: -warnaserror -w:2
3 using System;
4 class X {
6 public static void HandleConflict (int a) {
7 if (a != 1)
8 goto throwException;
9 if (a != 2)
10 goto throwException;
11 return;
12 throwException:
13 throw new Exception ();
16 public static int Main ()
18 int ret = 1;
19 try { HandleConflict (1); }
20 catch {
21 try { HandleConflict (2); }
22 catch { ret = 0; }
24 return ret;