blob: bdd49e3a72d1c28af09c6547a19d88e9cff3c2fa [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 it is a compile error to assign a double literal
* to a typed int variable.
* @compile-error
* @author iefremov
*/
main() {
int d = 1.1;
}