TypeScript/tests/baselines/reference/parserInterfaceKeywordInEnum1.types

12 lines
208 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserInterfaceKeywordInEnum1.ts ===
"use strict";
2015-04-13 21:36:11 +02:00
>"use strict" : string
2014-08-15 23:33:16 +02:00
enum Bar {
>Bar : Bar
2014-08-15 23:33:16 +02:00
interface,
>interface : Bar
2014-08-15 23:33:16 +02:00
}