blob: 21c00c74a62b6e0b6b32496baf3ae58ae9fb815e [file] [log] [blame]
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) {}