[mcs] Fixes codegen for pattern probing with value-type variables
[mono.git] / mcs / errors / cs0663-6.cs
1 // CS0633: Overloaded method `C.Foo(string)' cannot differ on use of parameter modifiers only
2 // Line: 11
3
4
5 public static class C
6 {
7         static  void Foo (this string eType)
8         {
9         }
10         
11         static  void Foo (string value)
12         {
13         }
14 }