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

QtObject {
    property real positiveInfinity: Infinity
    property real negativeInfinity: -Infinity
    property real positiveZero: 0.0
    property real negativeZero: -0.0
    property real naN: NaN
}