| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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 import "package:expect/expect.dart"; |
| 6 |
| 5 // Tests classes with getters and setters that do not have the same type. | 7 // Tests classes with getters and setters that do not have the same type. |
| 6 | 8 |
| 7 class A { | 9 class A { |
| 8 int a() { return 37;} | 10 int a() { return 37;} |
| 9 } | 11 } |
| 10 | 12 |
| 11 class B extends A{ | 13 class B extends A{ |
| 12 int b() { return 38; } | 14 int b() { return 38; } |
| 13 } | 15 } |
| 14 | 16 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 56 |
| 55 // Type 'A' has no method named 'b' | 57 // Type 'A' has no method named 'b' |
| 56 instance1.field.b(); /// 02: static type warning | 58 instance1.field.b(); /// 02: static type warning |
| 57 | 59 |
| 58 instance3.field = new B(); | 60 instance3.field = new B(); |
| 59 result = instance3.field.a(); | 61 result = instance3.field.a(); |
| 60 Expect.equals(37, result); | 62 Expect.equals(37, result); |
| 61 result = instance3.field.b(); | 63 result = instance3.field.b(); |
| 62 Expect.equals(38, result); | 64 Expect.equals(38, result); |
| 63 } | 65 } |
| OLD | NEW |