Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1101.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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)
	{
	}
}