442fa7f44e
Update in response to issue #44329 and to match the change in https://dart-review.googlesource.com/c/sdk/+/174300 Change-Id: Ia28887f0fad54927b82b7aa29acb88231053cd6a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/174800 Reviewed-by: Vyacheslav Egorov <vegorov@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
38 lines
1.8 KiB
Plaintext
38 lines
1.8 KiB
Plaintext
library /*isNonNullableByDefault*/;
|
|
//
|
|
// Problems in library:
|
|
//
|
|
// pkg/front_end/testcases/nnbd/non_nullable_optional.dart:9:14: Error: The parameter 'a' can't have a value of 'null' because of its type 'int', but the implicit default value is 'null'.
|
|
// Try adding either an explicit non-'null' default value or the 'required' modifier.
|
|
// method1({int a}) {}
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/nnbd/non_nullable_optional.dart:11:14: Error: The parameter 'a' can't have a value of 'null' because of its type 'int', but the implicit default value is 'null'.
|
|
// Try adding either an explicit non-'null' default value or the 'required' modifier.
|
|
// method2([int a]) {}
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/nnbd/non_nullable_optional_part.dart:7:14: Error: The parameter 'a' can't have a value of 'null' because of its type 'int', but the implicit default value is 'null'.
|
|
// Try adding either an explicit non-'null' default value or the 'required' modifier.
|
|
// method3({int a}) {}
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/nnbd/non_nullable_optional_part.dart:9:14: Error: The parameter 'a' can't have a value of 'null' because of its type 'int', but the implicit default value is 'null'.
|
|
// Try adding either an explicit non-'null' default value or the 'required' modifier.
|
|
// method4([int a]) {}
|
|
// ^
|
|
//
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
part non_nullable_optional_part.dart;
|
|
static method main() → dynamic {}
|
|
static method method1({core::int a = #C1}) → dynamic {}
|
|
static method method2([core::int a = #C1]) → dynamic {}
|
|
static method /* from org-dartlang-testcase:///non_nullable_optional_part.dart */ method3({core::int a = #C1}) → dynamic {}
|
|
static method /* from org-dartlang-testcase:///non_nullable_optional_part.dart */ method4([core::int a = #C1]) → dynamic {}
|
|
|
|
constants {
|
|
#C1 = null
|
|
}
|