summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1056.cs
blob: 71c14eb0a0f08a2fb2ec3c1bc133a585d7675bcd (plain)
1
2
3
4
5
6
7
8
9
10
// CS1056: Unexpected character `$'
// Line: 8

public class C
{
	void Update ()
	{
		int a = $7;
	}
}