linux-packaging-mono/mcs/tests/test-throw-expr-02.cs

22 lines
383 B
C#
Raw Permalink Normal View History

using System;
class Program
{
public static int Main ()
{
Console.WriteLine (M (1));
try {
Console.WriteLine (M (null));
} catch (Exception) {
Console.WriteLine ("thrown");
return 0;
}
return 1;
}
static string M (object data)
{
return data?.ToString () ?? throw null;
}
}