Skip to content

Instantly share code, notes, and snippets.

@kmizu
Created June 4, 2010 04:51
Show Gist options
  • Save kmizu/424971 to your computer and use it in GitHub Desktop.
Save kmizu/424971 to your computer and use it in GitHub Desktop.
object X extends Enumeration {
val A, B, C = Value
}
val x: X.Value = X.A
x match { case X.A => println("FOO") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment