summaryrefslogtreecommitdiff
path: root/tests/auto/language/testdata/id-uniqueness.qbs
blob: 9f1bb70167527049be9d64b7dc808b9a122e8150 (plain)
1
2
3
4
5
6
7
8
9
10
11
import "idusagebase.qbs" as DerivedProduct

Project {
    id: theProject
    DerivedProduct {
        id: baseProduct         // OK - even though 'baseProduct' is used in the base item.
    }
    DerivedProduct {
        id: baseProduct         // ERROR
    }
}