2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / 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;