Skip to content

Commit

Permalink
Merge pull request #139 from szeiger/wip/class-method-concrete-overri…
Browse files Browse the repository at this point in the history
…de-of-concrete-supertrait-method

Add test case class-method-concrete-override-of-concrete-supertrait-method
  • Loading branch information
SethTisue committed Nov 16, 2016
2 parents 0da3b46 + e607d19 commit 1d75274
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
@@ -0,0 +1,5 @@
trait A {
def foo = 2
}

class B extends A
@@ -0,0 +1,7 @@
trait A {
def foo = 2
}

class B extends A {
override def foo: Int = 3
}

0 comments on commit 1d75274

Please sign in to comment.