aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/UnqualifiedInStoreStrict.qml
blob: 198e2146f54b0a35928780eb964729685b9d51df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.15
import QtQuick.Window 2.15

Window {
    Rectangle {
        property real divisor: 0

        Timer {
            onTriggered: function() {"use strict"; divisor = 1 }
        }
    }
}