7bf731a547
Change-Id: I55fb4c10931831630f9c1621addef7fbe9d5a9d2 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/205797 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com> Commit-Queue: Jens Johansen <jensj@google.com>
22 lines
253 B
Dart
22 lines
253 B
Dart
class Foo {
|
|
bool operator <(int x) {
|
|
return true;
|
|
}
|
|
|
|
int operator <<(int x) {
|
|
return 42;
|
|
}
|
|
|
|
bool operator >(int x) {
|
|
return true;
|
|
}
|
|
|
|
int operator >>(int x) {
|
|
return 42;
|
|
}
|
|
|
|
int operator >>>(int x) {
|
|
return 42;
|
|
}
|
|
}
|