Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0763.cs
1 // CS0763: A partial method declaration and partial method implementation must be both `static' or neither
2 // Line: 11
3
4
5 public partial class C
6 {
7         static partial void Foo ()
8         {
9         }
10         
11         partial void Foo ();
12 }