blob: 13dc0821b0370992fe3a66f501e69f81af808d6f [file] [log] [blame]
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
main() {
bool b = true & true;
b |= true;
b = b ^ b;
print(b);
}