Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
Qt Creator 11.0.0-rc1
-
Windows 11
-
-
6b8473a2e (11.0)
Description
Restarting an application that waits for input on the terminal with CTRL+R freezes QtCreator for around 30 seconds.
#include <iostream> #include <string>int main(int argc, char *argv[]) { std::string s; std::cout << "Enter something: "; std::cin >> s; std::cout << "You entered: " << s << std::endl; return 0; }
How to reproduce:
- Start program and wait for "Enter something" displayed.
- Restart program with CTRL+R without submitting any input to STDIN