summaryrefslogtreecommitdiff
path: root/test/OpBoolLogic.ci
blob: 8ae7e7b6f19939a7a068e8ef79fd4841e998170e (plain)
1
2
3
4
5
6
7
8
9
10
11
public static class Test
{
	public static bool Run()
	{
		bool t = true;
		bool f = false;
		return (t & !f) //FAIL: swift ts TODO
			&& (t | f)
			&& (t ^ f);
	}
}