[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0751.cs
1 // CS0751: A partial method must be declared within a partial class or partial struct
2 // Line: 7
3
4
5 public class C
6 {
7         partial void Foo ()
8         {
9         }
10 }