mirror of
https://github.com/swc-project/swc.git
synced 2024-12-28 08:04:43 +03:00
12 lines
182 B
TypeScript
12 lines
182 B
TypeScript
|
// @allowJs: true
|
||
|
// @filename: in.js
|
||
|
// @out: out.js
|
||
|
/**
|
||
|
* @param {never} p1
|
||
|
* @param {undefined} p2
|
||
|
* @param {null} p3
|
||
|
* @returns {void} nothing
|
||
|
*/
|
||
|
function f(p1, p2, p3) {
|
||
|
}
|