TypeScript Version: 2.1.4 ```ts class MyC extends Error { constructor(msg: string) { super(msg); } } let myC = new MyC("Hmmm"); let test3 = myC instanceof Error; //TRUE let test4 = myC instanceof MyC; //!!!FALSE!!! ``` Expected behavior: test4 should be TRUE Actual behavior: test4 is FALSE