blob: 088a7b0adc6aa18526233a91e4031752f7acf09f [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 an integer literal is int.
/// @description Checks that it is a compile error to assign an integer literal
/// to a typed bool variable.
/// @author iefremov
main() {
bool b = 1;
// ^
// [analyzer] unspecified
// [cfe] unspecified
}