aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/lambdaWithIfElseInsideLambda.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlformat/data/lambdaWithIfElseInsideLambda.js')
-rw-r--r--tests/auto/qml/qmlformat/data/lambdaWithIfElseInsideLambda.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlformat/data/lambdaWithIfElseInsideLambda.js b/tests/auto/qml/qmlformat/data/lambdaWithIfElseInsideLambda.js
new file mode 100644
index 0000000000..23ae087b04
--- /dev/null
+++ b/tests/auto/qml/qmlformat/data/lambdaWithIfElseInsideLambda.js
@@ -0,0 +1 @@
+var l = function(){var nl = function(){if(true){console.log("true");}else{console.log("false");}};};