// Verify that references to operators are // linked correctly (issue 0145). namespace test67 { class Test { public: /** * Is equal, this is the same as {@link #is_equal is_equal}. * @see #is_equal */ bool operator==(const Test&) const; /** * Test method, this is the same as {@link #operator== ==}. * @see #operator== */ bool is_equal(const Test&) const; }; }