blob: 96caa252458f53b6a79766bd3115f76c2c3676d3 [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 literal double is double.
* @description Checks that a static warning is produced when assigning a double literal to
* a typed int variable.
* @static-warning
* @author iefremov
* @reviewer rodionov
*/
import "../../Utils/dynamic_check.dart";
main() {
checkTypeError(() {
int d = 1.1; /// static type warning
});
}