Skip to content

Instantly share code, notes, and snippets.

@ebruchez
Created June 26, 2011 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ebruchez/1047903 to your computer and use it in GitHub Desktop.
Save ebruchez/1047903 to your computer and use it in GitHub Desktop.
scala> class A {private var y = 7; def x = y}
defined class A
scala> val a = new A
a: A = A@351775bc
scala> a.x = 5
<console>:7: error: value x_= is not a member of A
a.x = 5
^
scala>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment