dart-sdk/tests/modular/cross_module_constant_with_mixin/b.dart
Joshua Litt 2da9688cfb [modular] Create repro of issue building full dills from summaries.
Change-Id: I67db9eefe508ddbe072238e8773109c7b7f25d1a
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/222560
Reviewed-by: Sigmund Cherem <sigmund@google.com>
Commit-Queue: Joshua Litt <joshualitt@google.com>
2021-12-10 17:00:00 +00:00

11 lines
319 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 'a.dart';
import 'm.dart';
class B extends A with M {
B({double d = 2.71}) : super(d: d);
}