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

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