Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
inferred_type_invoke_method_via_interface.dart.textual_outline.expect
blob: 3f65a0060e03dd5a4b1d6d6ec0dd265e25d1f801 [
file
] [
log
] [
blame
]
library test
;
class
I
{
bool
g
()
=>
true
;
}
abstract
class
C
implements
I
{}
C f
()
=>
throw
''
;
var
x
=
f
().
g
();
main
()
{}