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_prime.dart
blob: c093e29a8e6417fbcd305eae4f1a110db82b64dc [
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"
);
}
}