| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 // Getters and setters can have different types, but it is a warning if the |
| 5 // two types are not assignable. |
| 6 |
| 7 int bar = 499; |
| 8 |
| 9 int /// 01: static type warning |
| 10 get foo() => bar; |
| 11 |
| 12 void set foo( |
| 13 String /// 01: continued |
| 14 str) { bar = str.length; } |
| 15 |
| 16 main() { |
| 17 int x = foo; |
| 18 Expect.equals(499, x); |
| 19 foo = "1234"; |
| 20 int y = foo; |
| 21 Expect.equals(4, y); |
| 22 } |
| OLD | NEW |