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

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