aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/erroneous/original-in-export-item3.qbs
blob: d23ad0a08b47acb8033f59254ae717b7f78df877 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Project {
    Product {
        name: "a"
        Export {
            Properties {
                condition: true
                x.y.z: original
            }
        }
    }
    Product {
        name: "b"
        Depends { name: "a" }
    }
}