Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0663.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 }