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 // Regression test case for http://dartbug.com/9602 | 5 // Regression test case for http://dartbug.com/9602 |
6 library issue9602; | 6 library issue9602; |
| 7 |
7 import 'issue9602_other.dart'; | 8 import 'issue9602_other.dart'; |
8 | 9 |
9 class C extends Object with M { | 10 class C extends Object with M {} |
10 } | |
11 | 11 |
12 main() { | 12 main() { |
13 new C(); | 13 new C(); |
14 } | 14 } |
OLD | NEW |