mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
40 lines
723 B
TypeScript
40 lines
723 B
TypeScript
// @target: es2015
|
|
|
|
let foo: string = "";
|
|
|
|
function f1 (bar = foo) { // unexpected compiler error; works at runtime
|
|
var foo: number = 2;
|
|
return bar; // returns 1
|
|
}
|
|
|
|
function f2 (bar = (baz = foo) => baz) { // unexpected compiler error; works at runtime
|
|
var foo: number = 2;
|
|
return bar(); // returns 1
|
|
}
|
|
|
|
function f3 (bar = foo, foo = 2) { // correct compiler error, error at runtime
|
|
return bar;
|
|
}
|
|
|
|
function f4 (foo, bar = foo) {
|
|
return bar
|
|
}
|
|
|
|
function f5 (a = a) {
|
|
return a
|
|
}
|
|
|
|
function f6 (async = async) {
|
|
return async
|
|
}
|
|
|
|
function f7({[foo]: bar}: any[]) {
|
|
let foo: number = 2;
|
|
}
|
|
|
|
class Foo {
|
|
constructor(public x = 12, public y = x) {}
|
|
}
|
|
|
|
function f8(foo1: string, bar = foo1) { }
|