summaryrefslogblamecommitdiff
path: root/test/files/run/reify_ann5.check
blob: d443c601a0998fb3ae577c130c06f2cd814f1ee0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
  
                           








                                                                                  
                           









                                                                            
{
  class C extends AnyRef {
    @new inline @beanGetter() @new BeanProperty() <paramaccessor> val x: Int = _;
    def <init>(x: Int) = {
      super.<init>();
      ()
    }
  };
  ()
}
{
  class C extends AnyRef {
    @scala.beans.BeanProperty <paramaccessor> private[this] val x: Int = _;
    <stable> <accessor> <paramaccessor> def x: Int = C.this.x;
    def <init>(x: Int): C = {
      C.super.<init>();
      ()
    };
    @inline @scala.annotation.meta.beanGetter def getX(): Int = C.this.x
  };
  ()
}