summaryrefslogtreecommitdiff
path: root/test/files/pos/t8868c/T_1.scala
blob: dc541950d84a29df87f5a278f210d8a72a561f7b (plain) (blame)
1
2
3
4
5
6
7
8
9
class C(a: Any) extends annotation.StaticAnnotation

@C({val x = 0; x})
trait T {
  class X

  @C({val x = 0; x})
  def foo = 42
}