aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/idempotency-lazy-vals.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/idempotency-lazy-vals.check')
-rw-r--r--tests/pending/run/idempotency-lazy-vals.check23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/pending/run/idempotency-lazy-vals.check b/tests/pending/run/idempotency-lazy-vals.check
deleted file mode 100644
index 15afa5303..000000000
--- a/tests/pending/run/idempotency-lazy-vals.check
+++ /dev/null
@@ -1,23 +0,0 @@
-6
-{
- class C extends AnyRef {
- def <init>(): C = {
- C.super.<init>();
- ()
- };
- lazy private[this] val x: Int = _;
- <stable> <accessor> lazy def x: Int = {
- C.this.x = 2;
- C.this.x
- };
- lazy private[this] val y: Int = _;
- implicit <stable> <accessor> lazy def y: Int = {
- C.this.y = 3;
- C.this.y
- }
- };
- val c: C = new C();
- import c._;
- c.x.*(Predef.implicitly[Int](c.y))
-}
-error!