Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-665.cs
1 using System;
2
3 class Test
4 {
5         public static int Main ()
6         {
7                 return checked (Method) (null) + unchecked (Method) (null);
8         }
9         
10         static int Method (object o)
11         {
12                 return 0;
13         }
14 }