Files
sdk/pkg/front_end/testcases/nnbd/infer_from_late_variable.dart.weak.expect
T
Johnni Winther d2e96aa6d3 [cfe] Report error on (un)assigned late variables
Closes #40601
Closes #41103
Closes #40946

Change-Id: I1a28f497ffe0be3d1f9e673f1e8be7a518bbfc7e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/140403
Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
Commit-Queue: Johnni Winther <johnniwinther@google.com>
2020-03-23 14:48:53 +00:00

11 lines
274 B
Plaintext

library /*isNonNullableByDefault*/;
import self as self;
import "dart:core" as core;
static method f<T extends core::Object? = dynamic>(self::f::T% t) → self::f::T%
return t;
static method main() → dynamic {
late core::int local;
local = self::f<core::int>(0);
}