-
Bug
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 2.5.0-beta
-
None
-
GDB
-
3d39451b15757f3fca93dddc4982f74a4104da80
#include <iostream> int main() { int foo = 0; int *bar = &foo; std::cout << "&foo: " << &foo << "; bar: " << bar << "; &bar: " << &bar; return 0; }
&bar is displayed for bar instead of &foo.