summaryrefslogtreecommitdiff
path: root/test/files/run/reify_ann5.check
blob: 1ec0457e542cd7eb246d20327601920a0bcd5f9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  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
  };
  ()
}