Skip to content

Instantly share code, notes, and snippets.

@dwins
Created August 23, 2010 15:56
Show Gist options
  • Save dwins/545755 to your computer and use it in GitHub Desktop.
Save dwins/545755 to your computer and use it in GitHub Desktop.
trait MySelf[A <: MySelf[_]] {
def me: A
}
class Me extends MySelf[Me] {
def me: Me = this
}
class I extends MySelf[I] {
def me: I = this
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment