Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
inferred_type_custom_binary_op_via_interface.dart.textual_outline_modelled.expect
blob: e133e7b84d4ee3fb4f404aeb72e3a37bc200d32a [
file
] [
log
] [
blame
]
library test
;
C c
=
throw
''
;
abstract
class
C
implements
I
{}
class
I
{
bool
operator
*(
C other
)
=>
true
;
}
test
()
{}
var
x
=
c
*
c
;