Skip to content

Instantly share code, notes, and snippets.

@arkadius
Created September 15, 2014 19:39
Show Gist options
  • Save arkadius/49874b0f83fbd1104d29 to your computer and use it in GitHub Desktop.
Save arkadius/49874b0f83fbd1104d29 to your computer and use it in GitHub Desktop.
object CastingTest extends App {
val boxWithListOfInts: CastingBox[List[Int]] = new CastingBox[List[Int]] {
val value = List("123")
}
println(s"value: ${boxWithListOfInts.casted}")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment