SuperSimple := Rectangle { property p1: 3s + 1ms; property p2: 3s + 1; // ^error{Cannot convert float32 to duration} property p3: 3s - 1; // ^error{Cannot convert float32 to duration} property p4: 3 / 1ms; // ^error{Cannot convert duration to float32} property p5: 3ms * 1; property p6: 3ms * 1s; // ^error{Cannot convert duration to float32} property p7: "hello" * 1; // ^error{Cannot convert string to float32} property p8: 1 + "hello" + 1; // ^error{Cannot convert string to float32} }