blob: 9e7e6fab02502978ab3ac1ec388dde5333df2cf8 [file] [edit]
// 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);
}