[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-partial-25.cs
blobd56d279929d4d1b821df5de81d08c0646b5b1e36
1 using System;
3 partial class C
5 static partial void Partial (int i = 8);
7 static partial void Partial (int i)
9 if (i != 8)
10 throw new ApplicationException ();
13 public static int Main ()
15 Partial ();
16 return 0;