// Example program that compiles with --cfront_3.0 option or // --special_subscript_cost option, but not under strict ANSI rules. class Vec { public: int& operator[](unsigned int); operator int*(); }; void main() { Vec v; v[0] = 1; }