--- Comment #2 from manu at gcc dot gnu dot org 2010-02-20 18:59 ---
Unfortunately, I have to agree with Wolfgang. We could do better with caret
diagnostics but that is still far away. Sorry, closing as WONTFIX.
--
manu at gcc dot gnu dot org changed:
What|Removed
--- Comment #1 from bangerth at dealii dot org 2007-04-30 00:01 ---
I believe the current approach is pretty much the only thing that
can be implemented reliably, because you could write code like this:
---
int f(int i, int j);
int f(int j, int i);
int g = f(1,2);
--