blob: 06ef48b82b646d8748b32515c18f27c94456d186 [file] [log] [blame]
import QtQuick 2.0
QtObject {
property string result
property bool isString: false
Component.onCompleted: {
var a = Qt.resolvedUrl("resolvedUrl.qml");
result = a;
isString = (typeof a) == "string"
}
}