aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/reify_ann5.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/reify_ann5.check')
-rw-r--r--tests/disabled/macro/run/reify_ann5.check22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/reify_ann5.check b/tests/disabled/macro/run/reify_ann5.check
new file mode 100644
index 000000000..1ec0457e5
--- /dev/null
+++ b/tests/disabled/macro/run/reify_ann5.check
@@ -0,0 +1,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
+ };
+ ()
+}