| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 const double c = 0.0; /// 01: ok | 5 const double c = 0.0; //# 01: ok |
| 6 const double d = 0; /// 02: static type warning, checked mode compile-time error | 6 const double d = 0; //# 02: static type warning, checked mode compile-time error |
| 7 | 7 |
| 8 main() { | 8 main() { |
| 9 print(c); /// 01: continued | 9 print(c); //# 01: continued |
| 10 print(d); /// 02: continued | 10 print(d); //# 02: continued |
| 11 } | 11 } |
| OLD | NEW |