Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
Qt Creator 12.0.2, Qt Creator 13.0.0-beta1
-
None
-
Ubuntu 22.04 LTS
Description
with "Insert opening or closing brackets" option disabled (unchecked),
when I type "operator int("
in the following code, QtCreator crashes immediately (as soon as the opening parenthesis is typed. It only occurs while in the process of typing from the keyboard, and not when pasting from clipboard etc):
struct X { operator int(); // it doesn't matter what the type is - it could be a QString or whatever };
with "Insert opening or closing brackets" option enabled (checked),
everything works fine.