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

cs0118-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 782b77093c237d82ce3ed47c5e2f962830c3fc79 (plain)
1
2
3
4
5
6
7
8
class D {
	static int a = 1;
	static int b = 2;
	static int Main ()
	{
	return (a << 1) ~ (b);	
	}
}