mirror of
https://github.com/swc-project/swc.git
synced 2024-12-03 00:54:25 +03:00
16 lines
355 B
TypeScript
16 lines
355 B
TypeScript
// @ts-ignore with additional commenting
|
|
var invalidCommentedFancy: number = 'nope';
|
|
|
|
// @ts-ignore with additional commenting
|
|
var validCommentedFancy: string = 'nope';
|
|
|
|
// @ts-ignore
|
|
var invalidCommentedPlain: number = 'nope';
|
|
|
|
// @ts-ignore
|
|
var validCommentedPlain: string = 'nope';
|
|
|
|
var invalidPlain: number = 'nope';
|
|
|
|
var validPlain: string = 'nope';
|