summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0663-6.cs
blob: 44b3cc30efdc22b89d136f07cf90fd77c687ef18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0633: Overloaded method `C.Foo(string)' cannot differ on use of parameter modifiers only
// Line: 11


public static class C
{
	static  void Foo (this string eType)
	{
	}
	
	static  void Foo (string value)
	{
	}
}