blob: e8e141d14e67a4d4fc0fa4b7387985ba636bad22 [file] [log] [blame]
// Copyright (c) 2020, 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.
// @dart=2.9
class Class {
external Class.patched();
Class.unpatched();
}
mixin Mixin {}
class SubClass extends Class with Mixin {
external SubClass.patched();
SubClass.unpatched() : super.unpatched();
}