blob: dbe5bf835ca7f9752283d4a7f6e3cd1e4580306d [file] [log] [blame]
// Copyright (c) 2016, 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.
abstract class M1 {
m() => print("M1");
}
abstract class M2 {
m() => print("M2");
}
class C extends Object with M1, M2 {
}
main() {
new C().m();
}