Skip to content

Instantly share code, notes, and snippets.

@arussel
Created July 13, 2012 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save arussel/3106005 to your computer and use it in GitHub Desktop.
Save arussel/3106005 to your computer and use it in GitHub Desktop.
abstract class Foo(implicit config: Config) {
}
class Bar(config: Config) extends Foo(config) {
def doxxx = {
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