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