Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-partial-27.cs
blobcf501d12c756c1febc427825d28fbe86e4b7dd9c
1 using System;
3 partial class C
5 static partial void Partial (int i);
7 static partial void Partial (string i);
9 public static int Main ()
11 Partial (1);
12 Partial ("x");
13 return 0;