Merge pull request #4419 from BrzVlad/fix-oom-nre
[mono.git] / mcs / tests / test-partial-27.cs
1 using System;
2
3 partial class C
4 {
5         static partial void Partial (int i);
6         
7         static partial void Partial (string i);
8         
9         public static int Main ()
10         {
11                 Partial (1);
12                 Partial ("x");
13                 return 0;
14         }
15 }