blob: bab579d9d6baae7dde0a9fad509bffcc44d350e2 [file] [log] [blame]
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) => true;
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) {}