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>
16 lines
350 B
Dart
16 lines
350 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.
|
|
|
|
inline class Class1 {
|
|
final int field;
|
|
|
|
Class1(this.field);
|
|
}
|
|
|
|
inline class Class2 {
|
|
final int field;
|
|
|
|
Class2(this.field);
|
|
}
|