blob: cb1a326ad1ea2bc3236c38088134904dea236f91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
class Test
{
public static int Main ()
{
return checked (Method) (null) + unchecked (Method) (null);
}
static int Method (object o)
{
return 0;
}
}
|