summaryrefslogblamecommitdiff
path: root/test/files/run/reify_ann4.check
blob: 6f853053d2cd3eed331da167f75c2abcd65c9272 (plain) (tree)
1
2
3
4
5
6
7
8






                                     
                           














                                                                                       
                           







                          
{
  class D extends StaticAnnotation {
    def <init>() = {
      super.<init>();
      ()
    }
  };
  class C extends AnyRef {
    def <init>() = {
      super.<init>();
      ()
    }
  };
  val c1 = new C @D();
  ()
}
{
  class D extends scala.annotation.Annotation with scala.annotation.StaticAnnotation {
    def <init>(): D = {
      D.super.<init>();
      ()
    }
  };
  class C extends AnyRef {
    def <init>(): C = {
      C.super.<init>();
      ()
    }
  };
  val c1: C = new C @D();
  ()
}