aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlengine/data/TypeofQmlProperty.qml
blob: 2196543dc8ef51c6951739e7c2e025ce4a4da7a5 (plain)
1
2
3
4
5
6
import QtQuick 2.5

Item {
    property var someProp: 1
    Component.onCompleted: console.log("typeof someProp:", typeof(someProp));
}