blob: 03f90c15c8efe68008f9e86cfa8f543db15d9ced [file] [log] [blame]
import QtQml 2.0
QtObject {
property bool someProperty: true
function testCall() {
try {
someProperty(); // should throw
return false
} catch (e) {
return true
}
}
}