Skip to content

Instantly share code, notes, and snippets.

@nafg
Forked from arussel/gist:3106005
Created July 16, 2012 06:55
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 nafg/3121199 to your computer and use it in GitHub Desktop.
Save nafg/3121199 to your computer and use it in GitHub Desktop.
abstract class Foo(config: Config) {
}
class Bar(config: Config) extends Foo(config) {
def doStuff = {
Obj.doStuff(1)
}
}
object Obj {
def doStruf(i: Int)(implicit config: Config) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment