TypeScript/tests/cases/fourslash/jsdocDeprecated_suggestion7.ts
Wenlu Wang 7b728754c0
Fix incorrect deprecated mark (#39611)
* Fix incorrect deprecated mark

* improve test
2020-07-15 08:47:25 -07:00

15 lines
272 B
TypeScript

///<reference path="fourslash.ts" />
//// enum Direction {
//// Left = -1,
//// Right = 1,
//// }
//// type T = Direction.Left
//// /** @deprecated */
//// const x = 1
//// type x = string
//// var y: x = 'hi'
verify.getSuggestionDiagnostics([]);