aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/letAndConst.qml
blob: 7f5aede196c32bf83bfc147a876e2f7a222c5461 (plain)
1
2
3
4
5
6
7
8
9
10
pragma Strict
import QtQml

QtObject {
    objectName: {
        let a = "a";
        const b = "b";
        return a + b;
    }
}