Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 | |
| 1 #library("lib_b"); | 5 #library("lib_b"); |
| 2 | 6 |
| 3 #import("4434_lib.dart"); | 7 #import("4434_lib.dart"); |
| 4 | 8 |
| 5 class B extends A { } | 9 class B extends A { } |
| 6 | 10 |
| 7 main() { | 11 main() { |
| 8 B b = new B(); | 12 B b = new B(); |
| 9 b.x(b); | 13 b.x(b); |
| 10 } | 14 } |
| OLD | NEW |