blob: 66bc5de3bcb457c9eb0d8c62bfbced598b785d98 [file]
// Copyright (c) 2026, 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.
class C1([v = 42]) {
this : assert(v.checkDynamic);
}
class C2({v = '42'}) {
this : assert(v.checkDynamic);
}
main() {
print(C1);
print(C2);
}