1 2 3 4 5 6 7 8 9 10 11 12 13 14
-- expect: fail --!strict type User = { id: string, active: boolean, } local user: User = { id = 123, active = true, } print(user)