Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0755.cs
1 // CS0755: A partial method declaration and partial method implementation must be both an extension method or neither
2 // Line: 11
3
4
5 public static partial class C
6 {
7         static partial void Foo (this string eType)
8         {
9         }
10         
11         static partial void Foo (string value);
12 }