mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
24 lines
480 B
TypeScript
24 lines
480 B
TypeScript
// @target: esnext
|
|
// @lib: esnext
|
|
// @declaration: true
|
|
// @allowJs: true
|
|
// @checkJs: true
|
|
// @filename: uniqueSymbolsDeclarationsInJsErrors.js
|
|
// @out: uniqueSymbolsDeclarationsInJsErrors-out.js
|
|
// @useDefineForClassFields: false
|
|
|
|
class C {
|
|
/**
|
|
* @type {unique symbol}
|
|
*/
|
|
static readwriteStaticType;
|
|
/**
|
|
* @type {unique symbol}
|
|
* @readonly
|
|
*/
|
|
static readonlyType;
|
|
/**
|
|
* @type {unique symbol}
|
|
*/
|
|
static readwriteType;
|
|
} |