You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
Error occurred after upgrade from typescript-eslint-parser^20.0.0.
Potentially related to #540.
What version of TypeScript are you using?
3.1.6
What version of typescript-eslint-parser are you using?
20.1.1
What code were you trying to parse?
import{Foo}from"./Foo";functionfoo(args: Foo){}// No errorfunctionbar([...args]: Foo){}// No errorfunctionbaz({ ...args}: Foo){}// 'Foo' is already declared in the upper scopeconstfoo=Foo;// No errorconst[...foo]=Foo;// No errorconst{ ...foo}=Foo;// No error