summaryrefslogtreecommitdiff
path: root/test/files/run/t1501.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t1501.scala')
-rw-r--r--test/files/run/t1501.scala20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/files/run/t1501.scala b/test/files/run/t1501.scala
index f1eb8f287d..05e4da8c7a 100644
--- a/test/files/run/t1501.scala
+++ b/test/files/run/t1501.scala
@@ -1,15 +1,15 @@
-import scala.tools.nsc._
+import scala.tools.nsc._
object Test {
-
+
/**
* ...
*/
-
+
val testCode = <code>
-
+
class xyz[A] extends TypeConstraint
-
+
def loopWhile[T](cond: =>Boolean)(body: =>(Unit @xyz[T])): Unit @ xyz[T] = {{
if (cond) {{
body
@@ -24,9 +24,9 @@ object Test {
(): @xyz[Int]
}}
}}
-
+
</code>.text
-
+
def main(args: Array[String]) = {
val settings = new Settings()
settings.classpath.value = System.getProperty("java.class.path")
@@ -45,11 +45,11 @@ object Test {
}
}
-
+
global.addAnnotationChecker(checker)
-
+
tool.interpret(testCode)
-
+
}
}