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