semantic error: Assignment to an input function parameter `x` is not allowed --> test:2:5 | 2 | x = u16(11) | ``` def foo(x: u16): x = u16(11) foo(u16(10)) ```