summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-377.cs
blob: 6809734ffa275f0658afce4d4d269f84272f81e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public static class D
{
	static bool? debugging = null;
	static int? extra = 0;

	public static void Main ()
	{
		debugging |= true;
		
		extra |= 55;
	}
}