summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/metaobjectRevision4.qml
blob: 81ea5366514f11d908417502709287bc2a4cd263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt.test 1.1
import QtQuick 1.0

QtObject {
    property variant a
    property real test

    a: MyRevisionedClass {
        prop2: 11

        Component.onCompleted: test = prop2
    }
}