summaryrefslogtreecommitdiff
path: root/test/files/neg/t700.scala
blob: b08c8b55290e51fe740028b8993e05a841ffe456 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
trait Foo {
  def foobar: Unit;
}

trait Bar extends Foo {
  def foobar: Unit = super.foobar
}

// the following definition breaks the compiler
abstract class Foobar extends Bar