2009-09-03 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / tests / test-partial-25.cs
1 // Compiler options: -langversion:future
2
3 using System;
4
5 partial class C
6 {
7         static partial void Partial (int i = 8);
8         
9         static partial void Partial (int i)
10         {
11                 if (i != 8)
12                         throw new ApplicationException ();
13         }
14         
15         public static int Main ()
16         {
17                 Partial ();
18                 return 0;
19         }
20 }