summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativevaluetypes/data/qtbug-33625.qml
blob: 977028fc5d878be77b965a370d5a8a432fbe929b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 1.0
Item {
    property string stringtest: "16777237"
    property int stringint: stringtest

    property int inttest: 16777237
    property int intint: 0

    Component.onCompleted: {
        intint = inttest;
    }
}