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