summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-49.cs
blob: dd8c29312228d91f646b2828f55a572d605f4707 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// CS1525: Unexpected symbol `/'
// Line: 10

namespace Test674
{
	class MainClass
	{
		public static void Main(string[] args)
		{
			var a = new A(another: something, sth: /without/quotes);
		}
	}

	public class A
	{
		public A(string sth, string another)
		{
		}
	}
}