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

cs1002.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79909aa67b4ef047fadd8a9f10d22080ae208615 (plain)
1
2
3
4
5
6
7
8
9
10
// cs1002.cs: Expecting `;'
// Line: 8

class T {
	void member ()
	{
		int a = 1 | 2
		int b;
	}
}