e742ecfa9e
Change-Id: I2ec0553fccf6caa3aa93275955c9e8e2213ee7f9 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/275240 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
9 lines
310 B
Dart
9 lines
310 B
Dart
// Copyright (c) 2022, 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.18
|
|
|
|
mixin Mixin {}
|
|
inline class Class1 {}
|
|
inline class Class2 = Object with Mixin; |