Sign in
dart
/
sdk.git
/
refs/tags/2.17.0-130.0.dev
/
.
/
pkg
/
front_end
/
parser_testcases
/
no-triple-shift
/
define_triple_shift_method.dart
blob: a0c220e422b6c04266cac2dfc258606e82470973 [
file
] [
log
] [
blame
]
class
Foo
{
Foo
operator
>>>(
_
)
=>
this
;
}
main
()
{
Foo foo
=
new
Foo
();
foo
>>>
42
;
print
(
foo
>>>
42
);
print
(
foo
>>>=
42
);
if
((
foo
>>>=
42
)
==
foo
)
{
print
(
"same"
);
}
}