aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/isnan.qml
blob: dfc64e80028c7989fe84a801b39c3066345d5b45 (plain)
1
2
3
4
5
6
7
8
9
import QtQml

QtObject {
    property real good: 10.1
    property real bad: "f" / 10

    property bool a: isNaN(good)
    property bool b: isNaN(bad)
}