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

test-870.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5faceb7b35a0afbea004b5a7e1b6c548068efc13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class Test
{
	static void Foo (ushort p)
	{
		p = 0x0000;
		p |= 0x0000;
		p &= 0x0000;

		const ushort c = 0x0000;
		p &= c;
	}

	public static void Main ()
	{
		Foo (1);
	}
}