summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml
blob: 5b7d4130d9159d0d62365eb9b5d873bea534ed14 (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.onDestruction: console.log("Destruction " + a + " " + b);
}