// @target:es6 class C { constructor(t: boolean, z: string, x: number, y = "hello") { } public foo(x: string, t = false) { } public foo1(x: string, t = false, ...rest) { } public bar(t = false) { } public boo(t = false, ...rest) { } } class D { constructor(y = "hello") { } } class E { constructor(y = "hello", ...rest) { } }