TypeScript/tests/cases/compiler/enumMapBackIntoItself.ts

9 lines
217 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
enum TShirtSize {
Small,
Medium,
Large
}
var mySize = TShirtSize.Large;
var test = TShirtSize[mySize];
// specifically checking output here, bug was that test used to be undefined at runtime
test + ''