What is the meaning of the sentence referring to functions introduced by a using declaration?

Viewed 152

I'm studying the C++03 Standard and am now reading [7.3.3]/11, but I'm having trouble understanding the following passage:

If a function declaration in namespace scope or block scope has the same name and the same parameter types as a function introduced by a using-declaration, and the declarations do not declare the same function, the program is ill-formed.

I haven't found any examples of this situation anywhere and I don't understand the meaning of this passage.

2 Answers
Related