Last active
January 17, 2021 20:08
-
-
Save deanwampler/620f175a82f1c8e77672cafe78d0f623 to your computer and use it in GitHub Desktop.
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
scala> val zero0: 0 = 0 | |
val zero0: 0 = 0 | |
scala> val zero1: 0 = 1 | |
1 |val zero1: 0 = 1 | |
| ^ | |
| Found: (1 : Int) | |
| Required: (0 : Int) | |
scala> val one0: 1 = 0 | |
1 |val one0: 1 = 0 | |
| ^ | |
| Found: (0 : Int) | |
| Required: (1 : Int) | |
scala> val one1: 1 = 1 | |
val one1: 1 = 1 | |
scala> val one: NSize[1] = 2 | |
1 |val one: NSize[1] = 2 | |
| ^ | |
| Found: (2 : Int) | |
| Required: (1 : Int) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment