blob: 86c09410c22a3524a1d7e1906453fe35e5780af5 [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.
*/
/**
* @assertion The [&], [|] and [^] binary operators are now also allowed when
* the operands are of type [bool].
* @description Checks that operator [&] is accepted for potentially constant of
* type [bool].
* @author iarkh@unipro.ru
*/
import "../../Utils/expect.dart";
class MyClass {
final a;
const MyClass(bool i1, bool i2) : a = (i1 & i2);
}
main() {
const MyClass c1 = MyClass(true, true);
Expect.isTrue(c1.a);
const MyClass c2 = MyClass(true, false);
Expect.isFalse(c2.a);
const MyClass c3 = MyClass(false, true);
Expect.isFalse(c3.a);
const MyClass c4 = MyClass(false, false);
Expect.isFalse(c4.a);
}