Skip to content

Instantly share code, notes, and snippets.

@milessabin
Last active December 15, 2015 15:48
Show Gist options
  • Save milessabin/5284148 to your computer and use it in GitHub Desktop.
Save milessabin/5284148 to your computer and use it in GitHub Desktop.
package shapeless.examples
import shapeless.test.illTyped
object PantsOnFire {
//illTyped { 1+1 } // Does not compile
illTyped { illTyped { 1+1 } } // Compiles
val liar = illTyped { liar } // ???
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment