mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
20 lines
252 B
TypeScript
20 lines
252 B
TypeScript
// @noEmit: true
|
|
// @allowJs: true
|
|
// @checkJs: true
|
|
// @strict: true
|
|
// @Filename: a.js
|
|
|
|
/** @param {...*=} args
|
|
@return {*=} */
|
|
function f(...args) {
|
|
return null
|
|
}
|
|
|
|
/** @type *= */
|
|
var x;
|
|
|
|
|
|
/** @param {function():*=} f */
|
|
function cbf(f) {
|
|
}
|