Details
-
Bug
-
Resolution: Won't Do
-
P5: Not important
-
None
-
Qt Creator 8.0.1, Qt Creator 9.0.0-beta1
-
Ubuntu 20.04 LTS
g++ 9.4.0
Description
- Create a new "Plain C++ Application" project using Creator's wizard.
- Add lines doing input and output:
std::string s; std::cout << "Enter something: "; std::cin >> s; std::cout << "You entered: " << s << std::endl;
- Do not use "Run in Terminal".
- Run the project in Creator.
The program runs through without stopping.
Instead, the program should behave like it does when started from outside Creator, i.e. it should stop and wait for input to cin.
That Creator doesn't have a way to actually provide such input in this configuration is a separate issue.