blob: 64c1e9d980d0b2ebebd2fe1f509a390bdeb9ddf0 [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 no static warnings are produced when assigning
* double literals to a typed double variable.
* @static-clean
* @author iefremov
*/
main() {
double d = 1.0;
d = 0.0;
d = 124.12414148124e-1242;
d = double.nan;
}