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: 65de1280ea99468f7d9409338f69870889c9670d (plain)
1
2
3
4
5
6
7
8
9
10
// cs1002.cs: ; expected
// Line: 8

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