summaryrefslogblamecommitdiff
path: root/test/files/pos/t5330b.scala
blob: dbeb165cd8c1b21f1051e364176b405747d4c8ca (plain) (tree)
1
2
3
4
5
6





                                     
abstract trait Base {
  def foo: this.type
};
class Derived[T] extends Base {
  def foo: Nothing = sys.error("!!!")
}