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

15 lines
194 B
C#
Raw Normal View History

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