Skip to content

Instantly share code, notes, and snippets.

@rblaze
Created June 28, 2016 06:22
Show Gist options
  • Save rblaze/dfcc2adc5b6d9680d58738e1c7f985ad to your computer and use it in GitHub Desktop.
Save rblaze/dfcc2adc5b6d9680d58738e1c7f985ad to your computer and use it in GitHub Desktop.
class Foo(a: Int) {
def bar(other: Foo) {
other match {
case f : Foo => println(f.a)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment