Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
inferred_type_custom_index_op_via_interface.dart.textual_outline.expect
blob: 15464623bcd9a7d099c04ce07ce819488cac051c [
file
] [
log
] [
blame
]
library test
;
class
I
{
bool
operator
[](
int
index
)
=>
true
;
}
abstract
class
C
implements
I
{}
f
(
C c
)
{}
main
()
{}