Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / scarceResourceCopyNoBinding.var.qml
1 import QtQuick 2.0
2 import Qt.test 1.0
3
4 QtObject {
5     // this component doesn't bind any property to a scarce
6     // resource from the scarce resource provider,
7     // so the binding evaluation resource cleanup
8     // codepath shouldn't be activated; so if the resources
9     // are released, it will be due to the import evaluation
10     // resource cleanup codepath being activated correctly.
11     property MyScarceResourceObject a;
12     a: MyScarceResourceObject { id: scarceResourceProvider }
13 }
14