aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml
blob: c3d0e1ef4727302e7ffb0ab763519c1c68e83d69 (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);
}