mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +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) {
|
|
}
|