blob: c7103eaf05490c08065a01e26dddfe9b3948f02f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
pragma Strict
import QtQuick
Window {
// If static properties of the Math global object are not directly
// supported, a warning should be issued in turn failing the build
// due to `pragma Strict`.
width: 200 * Math.PI
}
|