summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-10.cs
blob: 3bd7f52d6da1ad822a9c929c94c563c729da4dc0 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1525: Unexpected symbol `ref'
// Line: 8

public class Test
{
	static void Main ()
	{
		string ref = "abc";
	}
}