eol
[mcs.git] / tests / test-partial-25.cs
blobb9046692f094df83dbbe3bfdc0519efa327057dd
1 // Compiler options: -langversion:future
3 using System;
5 partial class C
7 static partial void Partial (int i = 8);
9 static partial void Partial (int i)
11 if (i != 8)
12 throw new ApplicationException ();
15 public static int Main ()
17 Partial ();
18 return 0;