6480e28d5a
Includes a fix for matched value type being invalid, encountered during development. Closes #51770 Change-Id: I0c960eaef528f16789e8d9a42340e50f05326cf7 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/289602 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Chloe Stefantsova <cstefantsova@google.com>
19 lines
318 B
Plaintext
19 lines
318 B
Plaintext
library /*isNonNullableByDefault*/;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
static method f(dynamic x) → dynamic
|
|
return block {
|
|
core::int #t1;
|
|
final synthesized dynamic #0#0 = x;
|
|
#L1:
|
|
{
|
|
{
|
|
if(true) {
|
|
#t1 = 0;
|
|
break #L1;
|
|
}
|
|
}
|
|
}
|
|
} =>#t1;
|