89249a1de2
The added tests exhibit forwarding stubs injected into mixin application classes. These are currently not handled fully or consistently throughout the CFE and can lead to crashes and errors. Change-Id: Ib6a14c6adc48daa35f4a3a8e5b705ec3cf7f606d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/168652 Reviewed-by: Jens Johansen <jensj@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
12 lines
304 B
Dart
12 lines
304 B
Dart
// 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.
|
|
|
|
import 'main_lib.dart';
|
|
|
|
class SubClass extends Class {}
|
|
|
|
main() {
|
|
new SubClass();
|
|
}
|