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