[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0755.cs
blob66c48f348ec549709f3c24f6365a8e0bdb8ce82b
1 // CS0755: A partial method declaration and partial method implementation must be both an extension method or neither
2 // Line: 11
5 public static partial class C
7 static partial void Foo (this string eType)
11 static partial void Foo (string value);