aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/jsVarDeclarations.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmllint/data/jsVarDeclarations.js')
-rw-r--r--tests/auto/qml/qmllint/data/jsVarDeclarations.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/jsVarDeclarations.js b/tests/auto/qml/qmllint/data/jsVarDeclarations.js
new file mode 100644
index 0000000000..6c01b9f9a5
--- /dev/null
+++ b/tests/auto/qml/qmllint/data/jsVarDeclarations.js
@@ -0,0 +1,3 @@
+var varProp = 5;
+let letProp = [ 1, 2, 3, 4 ];
+const constProp = "unchangable";