linux-packaging-mono/mcs/tests/test-anon-168.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

63 lines
660 B
C#

using System;
class Program
{
public static void Main ()
{
Test test = new Test ();
test.Run ((i) => {
switch (i) {
case 0:
return 0;
case 1:
return 1;
default:
break;
}
throw new Exception ("Unknow value");
});
test.Run ((i) => {
switch (i) {
case 0:
return 0;
case 1:
return 1;
default:
throw new Exception ("Unknow value");
}
});
test.Run ((i) => {
switch (i) {
case 0:
return 0;
case 1:
return 1;
default:
return 8;
}
});
}
};
class Test
{
public delegate int RunDelegate (int val);
public void Run (RunDelegate test)
{
test (0);
}
}