summaryrefslogtreecommitdiff
path: root/test/files/run/reify_classfileann_a.check
blob: 1773263a94ddc36b8a003a1c290d5e864c4ecefb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  @new ann(bar = "1", quux = Array("2", "3"), baz = new ann(bar = "4")) class C extends Object with ScalaObject {
    def <init>() = {
      super.<init>();
      ()
    }
  };
  ()
}
{
  @ann(bar = "1", quux = ["2", "3"], baz = ann(bar = "4")) class C extends Object with ScalaObject {
    def <init>(): C = {
      C.super.<init>();
      ()
    }
  };
  ()
}