summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0103-14.cs
blob: aacf9a243792284b750810724cd1182aa252807d (plain)
1
2
3
4
5
6
7
8
9
10
11
// C0103: The name `s' does not exist in the current context
// Line: 7
// Compiler options: -langversion:experimental

class Test(string s)
{
	public Test ()
		: this (s)
	{
	}
}