summaryrefslogtreecommitdiff
path: root/tests/auto/language/testdata/throwing-probe.qbs
blob: 1fe059828f4a83602f0e55dcdd98b63dced33a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import qbs

Product {
    name: "theProduct"
    property bool enableProbe
    Probe {
        id: whatever
        condition: enableProbe
        configure: {
            throw "Error!";
        }
    }
}