aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/OnCompletedType.qml
blob: 947f14811f20c18e4d9d18d4c3278a1471ee9416 (plain)
1
2
3
4
5
6
7
8
import Test 1.0
import QtQuick 2.0

MyQmlObject {
    property int a: Math.max(10, 9)
    property int b: 11 
    Component.onCompleted: console.log("Completed " + a + " " + b);
}