-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Closed
Labels
DeclinedThe issue was declined as something which matches the TypeScript visionThe issue was declined as something which matches the TypeScript visionSuggestionAn idea for TypeScriptAn idea for TypeScript
Description
Search Terms:
enum assign number
Code
enum X {
A, B
}
const x: X.A = 5;
const y: X.A = X.B;Expected behavior:
2 errors: when assigning number literal and wrong enum member.
Actual behavior:
Typescript allows assigning any number to specific member type.
Playground Link:
http://bit.ly/2CZsUrK
CruiseMan, Conaclos, Stqs, krryan, Reshetnyak and 1 more
Metadata
Metadata
Assignees
Labels
DeclinedThe issue was declined as something which matches the TypeScript visionThe issue was declined as something which matches the TypeScript visionSuggestionAn idea for TypeScriptAn idea for TypeScript