Details
-
Bug
-
Resolution: Done
-
P0: Blocker
-
Qt Creator 4.0.0-beta1
-
Windows 7 64 bit
MSVC2013 32 bit
cdb 6.12
Description
- Have a simple program:
#include <QCoreApplication> #include <QDebug> void func(){ } int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); func(); qDebug() << "Program ran forward."; return a.exec(); }
- Place a breakpoint at the call to func().
- Run this in the debugger.
- When the debugger stopped at the breakpoint, press F11 to "step into".
The debugger will not step in. It will go into "Running" state and print the qDebug().
The debugger should just step into the called function.
Attachments
Issue Links
- resulted in
-
QTCREATORBUG-15859 [REG 3.6 -> 4.0] Can't show disassembler
- Closed