aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/WithStatement.qml
blob: 5641f21eeb11fdaa66e4fafb965c3bb4c199ecef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

Item {
    Item {
        id: target
        property int test: 42
    }
    Component.onCompleted: {
        with(target) {
            console.log(test);
        }
    }
}