aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/erroneous/original-in-export-item3.qbs
blob: 30b30dd0e2ef7d1824bea7b1361c2c8ae08f0307 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import qbs // FIXME: Don't remove this import because then the test fails!

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