aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/funcWithParams.qml
blob: b0c9780463fd9ffcd31dbb39b13413ae0b0ff91a (plain)
1
2
3
4
5
6
7
pragma Strict
import QtQml

QtObject {
    function foo(a: int) : int { return a + 10 }
    property int bar: foo(10 + 10)
}