15 lines
175 B
C#
Raw Normal View History

using System;
class Test
{
public static int Main ()
{
return checked (Method) (null) + unchecked (Method) (null);
}
static int Method (object o)
{
return 0;
}
}