blob: 481687e054ab7c048755ff3fca42cebd4d6bab2e [file] [log] [blame]
// @dart = 2.6
class Operators {
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 [](index) => null;
void operator []=(index, value) {}
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 -() => null;
}
main(arguments) {}