// Test boolean && and || operators class Main { void main() { boolean a, b, c; a = b && c || a; } }