dart-sdk/tests/language/bool/condition_check_weak_test.dart
Lasse R.H. Nielsen 5642199dd0 Remove uses of : as default value separator in some tests/ directories.
Change-Id: I35bb926e53e92fd02e264fb5b14feadf063fb8db
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/257961
Reviewed-by: Michael Thomsen <mit@google.com>
Commit-Queue: Lasse Nielsen <lrn@google.com>
2022-09-07 14:49:17 +00:00

27 lines
801 B
Dart

// Copyright (c) 2015, 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.
// Requirements=nnbd-weak
// Check that passing `null` for a boolean typed parameter will still cause
// a boolean conversion error when used in a condition.
import 'package:expect/expect.dart';
@pragma('dart2js:noInline')
String check({bool? a, bool? b}) {
String aString = (a as dynamic) ? 'a' : '';
String bString = (b as dynamic) ? 'b' : '';
return '$aString$bString';
}
class Class {
final String field;
Class({bool? a = false, bool? b = true}) : this.field = check(a: a, b: b);
}
main() {
Expect.throwsAssertionError(() => new Class(a: null, b: null).field);
}