2014-08-13 10:39:27 +01:00
|
|
|
// CS0162: Unreachable code detected
|
|
|
|
// Line: 18
|
|
|
|
// Compiler options: -warnaserror -warn:2
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
class X
|
|
|
|
{
|
|
|
|
public static int Main ()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
throw new ApplicationException ();
|
2015-04-07 09:35:12 +01:00
|
|
|
} catch when (false) {
|
2014-08-13 10:39:27 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|