aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/erroneous/original-in-export-item3.qbs
blob: d7bcb322e358505920b866a9345796266fcf6f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import qbs

Project {
    Product {
        name: "a"
        Export {
            Properties {
                condition: true
                x.y.z: original
            }
        }
    }
    Product {
        name: "b"
        Depends { name: "a" }
    }
}