Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
inferred_type_custom_binary_op.dart.textual_outline.expect
blob: e6999dded19d46fd54bd1929bd338fe561071f05 [
file
] [
log
] [
blame
]
library test
;
class
C
{
bool
operator
*(
C other
)
=>
true
;
}
C c
=
new
C
();
var
x
=
c
*
c
;
main
()
{}