linux-packaging-mono/mcs/tests/test-ex-filter-01.cs

15 lines
192 B
C#
Raw Normal View History

using System;
class X
{
public static int Main ()
{
int x = 4;
try {
throw null;
} catch (NullReferenceException) if (x > 0) {
Console.WriteLine ("catch");
return 0;
}
}
}