QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmllanguage / data / Alias2.qml
1 import Test 1.0
2 import QtQuick 2.0
3
4 QtObject {
5     property variant other
6     other: MyTypeObject { id: obj }
7     property alias enumAlias: obj.enumProperty;
8 }
9