aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/scala/async/neg/AnfTransformNegSpec.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/scala/async/neg/AnfTransformNegSpec.scala')
-rw-r--r--src/test/scala/scala/async/neg/AnfTransformNegSpec.scala59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/test/scala/scala/async/neg/AnfTransformNegSpec.scala b/src/test/scala/scala/async/neg/AnfTransformNegSpec.scala
deleted file mode 100644
index 0678429..0000000
--- a/src/test/scala/scala/async/neg/AnfTransformNegSpec.scala
+++ /dev/null
@@ -1,59 +0,0 @@
-/**
- * Copyright (C) 2012 Typesafe Inc. <http://www.typesafe.com>
- */
-package scala.async
-package neg
-
-import org.junit.runner.RunWith
-import org.junit.runners.JUnit4
-import org.junit.{Ignore, Test}
-
-@RunWith(classOf[JUnit4])
-class AnfTransformNegSpec {
-
- @Test
- @Ignore
- def `inlining block produces duplicate definition`() {
- expectError("x is already defined as value x", "-deprecation -Xfatal-warnings") {
- """
- | import scala.concurrent.ExecutionContext.Implicits.global
- | import scala.concurrent.Future
- | import scala.async.Async._
- |
- | async {
- | val f = Future { 12 }
- | val x = await(f)
- |
- | {
- | val x = 42
- | println(x)
- | }
- |
- | x
- | }
- """.stripMargin
- }
- }
-
- @Test
- @Ignore
- def `inlining block in tail position produces duplicate definition`() {
- expectError("x is already defined as value x", "-deprecation -Xfatal-warnings") {
- """
- | import scala.concurrent.ExecutionContext.Implicits.global
- | import scala.concurrent.Future
- | import scala.async.Async._
- |
- | async {
- | val f = Future { 12 }
- | val x = await(f)
- |
- | {
- | val x = 42
- | x
- | }
- | }
- """.stripMargin
- }
- }
-}