- Notifications
You must be signed in to change notification settings - Fork13.2k
Open

Description
TypeScript Version: 2.6.0-dev.20171011
Code
functioncountDown(n:number):void{switch(n){//@ts-ignorecase1:console.log("1");// intentional fall throughcase0:console.log("0");}}
Expected behavior:
Ability to makets-ignore apply to the--noFallthroughCasesInSwitch error but not to other errors.
Actual behavior:
case "1": would also compile.
