Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-665.cs
blobcb1a326ad1ea2bc3236c38088134904dea236f91
1 using System;
3 class Test
5 public static int Main ()
7 return checked (Method) (null) + unchecked (Method) (null);
10 static int Method (object o)
12 return 0;