da72ff691c
R=karlklose@google.com BUG= Review URL: https://codereview.chromium.org//13502006 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@20913 260f80e4-7a28-3924-810f-c04153c831b5
15 lines
377 B
Dart
15 lines
377 B
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// Regression test case for http://dartbug.com/9602
|
|
library issue9602;
|
|
import 'issue9602_other.dart';
|
|
|
|
class C extends Object with M {
|
|
}
|
|
|
|
main() {
|
|
new C();
|
|
}
|