sorry for being persistent, same question as in https://github.com/Microsoft/TypeScript/issues/9403#issuecomment-229222818 how is this going to work with unused parameters? ``` typescript fiction third(x:any, y: any, z: T) : T { return z; } // need only last one ```