Sign in
dart
/
sdk.git
/
refs/tags/2.13.0-140.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks
/
implicit_downcast_not.dart.weak.transformed.expect
blob: 84171e4dc7e619c96c1546ee0efe795b874d106e [
file
] [
log
] [
blame
]
library test
;
import
self
as
self
;
import
"dart:core"
as
core
;
static
method main
()
→
void
{
core
::
Object
*
o
=
1
;
try
{
!(
o
as
{
TypeError
}
core
::
bool
*);
throw
"no exception"
;
}
on core
::
TypeError
*
catch
(
no
-
exception
-
var
)
{
}
}