summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/Trac4471.scala
blob: 2a22887c0d0dcd2d7fe480e203ea8e92e3b7ecbe (plain) (blame)
1
2
3
4
5
6
7
8
9
class A {
  @deprecated def foo = 123
  @deprecated def bar = 456
}

class B {
  def foo = 123
  @deprecated def bar = 456
}