aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t3980.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t3980.scala')
-rw-r--r--tests/pending/run/t3980.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/pending/run/t3980.scala b/tests/pending/run/t3980.scala
deleted file mode 100644
index dbe9644ea..000000000
--- a/tests/pending/run/t3980.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-object A {
- def run1: Unit = {
- lazy val x: Unit = {(); println("once")}
- x
- x
- }
- def run2: Unit = {
- lazy val y: Int = 2
- println(y)
- println(y)
- }
-}
-
-object Test {
- def main(args: Array[String]) = {
- A.run1
- A.run2
- }
-}