summaryrefslogtreecommitdiff
path: root/test/OpBoolLogic.ci
blob: 432bea6ce3fe3c525df1b25c439e20064ea7781b (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: python swift ts TODO
			&& (t | f)
			&& (t ^ f);
	}
}