15 lines
175 B
C#
15 lines
175 B
C#
|
using System;
|
||
|
|
||
|
class Test
|
||
|
{
|
||
|
public static int Main ()
|
||
|
{
|
||
|
return checked (Method) (null) + unchecked (Method) (null);
|
||
|
}
|
||
|
|
||
|
static int Method (object o)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
}
|