mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 03:01:48 +03:00
12 lines
137 B
TypeScript
12 lines
137 B
TypeScript
// @target: es5
|
|
// @module: es2015
|
|
|
|
export function f1(d = 0) {
|
|
}
|
|
|
|
export function f2(...arg) {
|
|
}
|
|
|
|
export default function f3(d = 0) {
|
|
}
|