aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/language/testdata/erroneous/modules/module-with-wrong-property-option/m.qbs
blob: 8ea67f2c5dcf7d2c674e0f39c81d78413a3068d7 (plain)
1
2
3
4
5
6
7
8
9
import qbs

Module {
    property string someProp
    PropertyOptions {
        name: "s0meProp"
        description: "Oops, spelt the property name wrong"
    }
}