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