Skip to content

Instantly share code, notes, and snippets.

@ostretsov
Created January 14, 2015 05:16
Show Gist options
  • Save ostretsov/9648c585b13b86ef8535 to your computer and use it in GitHub Desktop.
Save ostretsov/9648c585b13b86ef8535 to your computer and use it in GitHub Desktop.
trait Point {
val x: Int = 5
val y: Int
}
class Something(override val x: Int = 6, val y: Int) extends Point
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment