summaryrefslogblamecommitdiff
path: root/test/files/run/reify_ann4.check
blob: 8bf5fe32423e15a2a686ad57a815105db4fb3e39 (plain) (tree)































                                                                                      
{
  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();
  ()
}