Sign in
dart
/
sdk
/
base
/
.
/
pkg
/
front_end
/
testcases
/
dot_shorthands
/
bool_parse.dart.strong.modular.expect
blob: 98e54afb7f549c4d0aa1746bce5db44acba8959d [
file
] [
log
] [
blame
]
library
;
import
self
as
self
;
import
"dart:core"
as
core
;
static
method fn
(
core
::
bool
b
)
→
void
{}
static
method main
()
→
void
{
self
::
fn
(
core
::
bool
::
parse
(
"true"
)
||
false
);
core
::
bool
b
=
false
||
core
::
bool
::
parse
(
"false"
);
}