summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/functionErrors.qml
blob: 4aca1110fa37264a658867b0d2bf205f9ea9b2bc (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.6

QtObject {
    function myFunction() {
        a = 10;
    }

    Component.onCompleted: myFunction();
}