blob: d1fceb7db3a040b3abd2f2c97da68589243fe7aa [file] [log] [blame]
// Copyright (c) 2011, 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 static type of a logical boolean expression is bool.
/// @description Checks that the static type of a logical boolean
/// expression is bool.
/// @author kaigorodov
main() {
int b = (true || false);
// ^
// [analyzer] unspecified
// [cfe] unspecified
}