Last active
October 6, 2018 16:50
-
-
Save dewey92/cc0ae82bc4c6cf5bf3053b17aab90afa to your computer and use it in GitHub Desktop.
Structural Check
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class A {} | |
| class B {} | |
| declare function onlyAcceptA(a: A): any; | |
| declare const b: B; | |
| onlyAcceptA(b); // typechecked :( |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment