blob: c8c98aaa7b1b4ebf03d642af42426f69560888ec [file] [log] [blame]
// Copyright (c) 2025, 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 '../../common/testing.dart' as helper;
import 'package:expect/expect.dart';
/// Verify that default values of const constructor parameters are retained.
void main() async {
final result = (await helper.load('entry1.dart')) as String;
Expect.equals("Foo1:41 Foo2:42 Foo3:43", result);
helper.done();
}