Files
qt-creator/tests/auto/qml/codemodel/check/useless-blocks.qml

18 lines
215 B
QML
Raw Normal View History

import Qt 4.7
Rectangle {
function foo() {
{} // 115 9 9
if (a) {}
}
onXChanged: {
{} // 115 9 9
while (A) {}
}
property int d: {
{} // 115 9 9
}
}