OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library ExtendsTestMain; |
| 6 import "extends_test_lib.dart"; |
| 7 import "package:expect/expect.dart"; |
| 8 |
| 9 // S should extend class A from below, not the one imported |
| 10 // from the library. |
| 11 class S extends A { |
| 12 } |
| 13 |
| 14 class A { |
| 15 var y = "class A from main script"; |
| 16 } |
| 17 |
| 18 main() { |
| 19 var s = new S(); |
| 20 Expect.equals("class A from main script", s.y); |
| 21 } |
| 22 |
OLD | NEW |