blob: 009e010b2d24183ea48039de3125deee0de1c120 (
plain)
1
2
3
4
5
6
7
8
9
|
import QtQml
QtObject {
property int a: (155 >> 2) << (2 << 2);
property int b: (a + 1) >> 1
property int c: (b - 2) << 2
property int d: (a + 3) << (b * 3)
property int e: (d - 4) >> (c / 2)
}
|