error: 'u8' is a reserved type name and cannot be used as an identifier --> /Users/agra/projects/sx/examples/1119-diagnostics-reserved-type-name-as-identifier.sx:9:14 | 9 | takes_u8 :: (u8: s32) -> s32 { return u8; } | ^^ error: 's64' is a reserved type name and cannot be used as an identifier --> /Users/agra/projects/sx/examples/1119-diagnostics-reserved-type-name-as-identifier.sx:12:5 | 12 | s64 : s32 = 3; | ^^^ error: 'bool' is a reserved type name and cannot be used as an identifier --> /Users/agra/projects/sx/examples/1119-diagnostics-reserved-type-name-as-identifier.sx:13:5 | 13 | bool : bool = true; | ^^^^ error: 'string' is a reserved type name and cannot be used as an identifier --> /Users/agra/projects/sx/examples/1119-diagnostics-reserved-type-name-as-identifier.sx:14:5 | 14 | string := "x"; | ^^^^^^