Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
inferred_type_custom_unary_op.dart.textual_outline.expect
blob: 2b6326a79e831b5a1e9361b7c22e894b3036e6f5 [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
C
{
bool
operator
-()
=>
true
;
}
C c
=
new
C
();
var
x
=
-
c
;
main
()
{}