aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmlls/utils/data/completions/continueAndBreakStatement.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmlls/utils/data/completions/continueAndBreakStatement.qml')
-rw-r--r--tests/auto/qmlls/utils/data/completions/continueAndBreakStatement.qml31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/auto/qmlls/utils/data/completions/continueAndBreakStatement.qml b/tests/auto/qmlls/utils/data/completions/continueAndBreakStatement.qml
new file mode 100644
index 0000000000..243f206db9
--- /dev/null
+++ b/tests/auto/qmlls/utils/data/completions/continueAndBreakStatement.qml
@@ -0,0 +1,31 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+
+Item {
+ function f(x) {
+ label1: f(f(x))
+
+ nestedLabel1: for (let i = 0; i < 3; ++i) {
+ nestedLabel2: for (let j = 0; j < 3; ++j) {
+ continue nestedLabel1;
+ break nestedLabel2;
+ }
+ }
+
+ multiLabel1:
+ multiLabel2: {
+ f(1 + f(x))
+ continue multiLabel1
+ break multiLabel2
+ }
+
+ for(;;) {
+ continue ;
+ break ;
+ }
+
+ return x + y
+ }
+}