[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0260.cs
blob69d6cce6f6114ba2ae3b7a6d90aec34e24076d21
1 // CS0260: Missing partial modifier on declaration of type `Foo'. Another partial declaration of this type exists
2 // Line: 3
3 public class Foo
4 { }
6 public partial class Foo
7 { }
9 class X
11 static void Main ()
12 { }