summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1101.cs
blob: 239387b37d2edea031d748241ffd79835108be6e (plain)
1
2
3
4
5
6
7
8
9
// CS1101: The parameter modifiers `this' and `ref' cannot be used altogether
// Line: 6

static class S
{
	static void Foo (ref this string s)
	{
	}
}