aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/OnCompletedType.qml
blob: 6b589fb612892cf2a0328ac22a6705487f4f4e46 (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);
}