blob: c6b5f5a1a36c8bd7f2b446ccb1f746783f1385d1 [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) => 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) {}