Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 1.2.1
-
None
-
b921489a577ef29f9687fa2cea5d2f0d67740db1
Description
Steps to reproduce / test case
1. Write a try catch block.
2. Catch by reference.
3. No completion is available for the caught exception (declaration header was included).
e.g:
try
{
d << c.b;
}
catch(std::exception& e)
{
e. // <-- nothing
}