aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/erroneous/invalid-parameter-type.qbs
blob: 6a18a596c95fa6618f8989ff398acfd8a7b13933 (plain)
1
2
3
4
5
6
7
8
9
10
import qbs

Product {
    Depends { name: "module_with_parameters" }
    Depends {
        name: "readonly"
        module_with_parameters.boolParameter: "This is not an error."
        module_with_parameters.stringParameter: 123
    }
}