| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 library ExtendsTestMain; | 5 library ExtendsTestMain; |
| 6 |
| 6 import "extends_test_lib.dart"; | 7 import "extends_test_lib.dart"; |
| 7 import "package:expect/expect.dart"; | 8 import "package:expect/expect.dart"; |
| 8 | 9 |
| 9 // S should extend class A from below, not the one imported | 10 // S should extend class A from below, not the one imported |
| 10 // from the library. | 11 // from the library. |
| 11 class S extends A { | 12 class S extends A {} |
| 12 } | |
| 13 | 13 |
| 14 class A { | 14 class A { |
| 15 var y = "class A from main script"; | 15 var y = "class A from main script"; |
| 16 } | 16 } |
| 17 | 17 |
| 18 main() { | 18 main() { |
| 19 var s = new S(); | 19 var s = new S(); |
| 20 Expect.equals("class A from main script", s.y); | 20 Expect.equals("class A from main script", s.y); |
| 21 } | 21 } |
| 22 | |
| OLD | NEW |