blob: 3a9ea311aa4fb6007114b36a3415205d3e912ee2 [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.
class Class {
external Class.patched();
Class.unpatched();
}
mixin Mixin {}
class SubClass extends Class with Mixin {
external SubClass.patched();
SubClass.unpatched() : super.unpatched();
}