summaryrefslogtreecommitdiff
path: root/tests/auto/qml/codemodel/check/avoid-eval.qml
blob: eb721797b5222e50b5758bd4314b25e78b045743 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0

Item {
    function foo() {
        eval("a + b") // 23 9 12
        var a = { eval: function (string) { return string; } }
        a.eval("a + b")
    }
}