Sign in
dart
/
sdk.git
/
1d268045c0ed151be4c89ba68f2dc3a47b8c1cae
/
.
/
pkg
/
front_end
/
testcases
/
patterns
/
non_bool_guard.dart.textual_outline.expect
blob: 6938017b71387be0235ea4240811ced28d27f00f [
file
] [
log
] [
blame
]
String
test1
(
List
<int>
v
)
{}
String
test2
(
List
<int>
v
)
{}
String
test3
(
List
<int>
v
)
=>
switch
(
v
)
{
[
var
a
,
_
]
when
a
-
1
=>
"match"
,
_
=>
"no match"
};