Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

48 lines
714 B
C#

using System;
public class MyEx : Exception {
public MyEx () {}
}
public class Ex {
public static int test (int a) {
int res;
int fin = 0;
try {
res = 10/a;
throw new MyEx ();
} catch (Exception ex) {
ex = new MyEx ();
throw;
} finally {
fin = 1;
}
return res;
}
public static int Main () {
int catched = 0;
try {
test (1);
} catch (MyEx ex) {
catched = 1;
}
if (catched != 1)
return 2;
try {
test (0);
} catch (MyEx ex) {
catched = 2;
} catch {
// we should get here because rethrow rethrows the dividebyzero ex
// not the exception assigned to the local var (a MyEx)
catched = 3;
}
if (catched != 3)
return 3;
return 0;
}
}