aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t3980.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-13 12:08:27 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-13 12:08:27 +0200
commit73a93505c432b410ae39fb3c4d6168b2e49832ce (patch)
tree53d45141a7b93682bea6430b0fb6ab28c3c3fad3 /tests/pending/run/t3980.scala
parent89bacb9c25a58454ff1878e67f7ea07ffc8c269f (diff)
downloaddotty-73a93505c432b410ae39fb3c4d6168b2e49832ce.tar.gz
dotty-73a93505c432b410ae39fb3c4d6168b2e49832ce.tar.bz2
dotty-73a93505c432b410ae39fb3c4d6168b2e49832ce.zip
Running rewrite tool on run tests.
Diffstat (limited to 'tests/pending/run/t3980.scala')
-rw-r--r--tests/pending/run/t3980.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/pending/run/t3980.scala b/tests/pending/run/t3980.scala
index c140176ce..dbe9644ea 100644
--- a/tests/pending/run/t3980.scala
+++ b/tests/pending/run/t3980.scala
@@ -1,10 +1,10 @@
object A {
- def run1 {
+ def run1: Unit = {
lazy val x: Unit = {(); println("once")}
x
x
}
- def run2 {
+ def run2: Unit = {
lazy val y: Int = 2
println(y)
println(y)
@@ -16,4 +16,4 @@ object Test {
A.run1
A.run2
}
-} \ No newline at end of file
+}