blob: 73cbab6e6b55b590222f0a38d324b7be3ca9adcb [file] [log] [blame]
// @dart = 2.9
class Operators {
operator %(other) => null;
operator &(other) => null;
operator *(other) => null;
operator +(other) => null;
operator -() => null;
operator -(other) => null;
operator /(other) => null;
operator <(other) => null;
operator <<(other) => null;
operator <=(other) => null;
operator ==(other) => null;
operator >(other) => null;
operator >=(other) => null;
operator >>(other) => null;
operator [](index) => null;
operator ^(other) => null;
operator |(other) => null;
operator ~() => null;
operator ~/(other) => null;
void operator []=(index, value) {}
}
main(arguments) {}