blob: 9a21426bd67382aca46f1be9e1fbd557ce0cef89 [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.
// @dart = 2.9
/// @assertion The static type of a boolean literal is bool.
/// @description Checks that a compile error is produced when assigning a
/// boolean literal to a typed int variable.
/// @author msyabro
/// @reviewer rodionov
main() {
int i = true;
// ^
// [analyzer] unspecified
// [cfe] unspecified
}