summaryrefslogtreecommitdiff
path: root/test/files/neg/t7605-deprecation.scala
blob: 2b3362f94ae97374cc74e23ae02f61db9749fe65 (plain) (blame)
1
2
3
4
5
6
7
8
abstract class Foo {
  def bar {}
  def baz
  def boo(i: Int, l: Long)
  def boz(i: Int, l: Long) {}
  def this(i: Int) { this() } // Don't complain here!
  def foz: Unit               // Don't complain here!
}