summaryrefslogblamecommitdiff
path: root/test/files/run/reify_classfileann_a.check
blob: 0c919020a8c6a3fd819ed252ed18443be24cda96 (plain) (tree)
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 AnyRef {
    def <init>() = {
      super.<init>();
      ()
    }
  };
  ()
}
{
  @ann(bar = "1", quux = ["2", "3"], baz = ann(bar = "4")) class C extends AnyRef {
    def <init>(): C = {
      C.super.<init>();
      ()
    }
  };
  ()
}