summaryrefslogtreecommitdiff
path: root/test/files/neg/t6162-inheritance.scala
blob: 7b47b9285a0a1eecaa473418747de15dd2db1da5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package scala.t6126

@deprecatedInheritance("`Foo` will be made final in a future version.", "2.10.0")
class Foo

class SubFoo extends Foo

@deprecatedInheritance()
trait T

object SubT extends T

@deprecatedInheritance()
trait S

object O {
  new S {
  }
}