summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-11-25 16:31:12 +0000
committerpaltherr <paltherr@epfl.ch>2003-11-25 16:31:12 +0000
commit164e2d82830d209820297ca104a00ad0b147389b (patch)
tree9d810f7db33c082b82eacda86a8d3e3bd44d9657 /test/files/pos
parent9a387fe59fb6a4f42599f5b6b2da7d911f0da793 (diff)
downloadscala-164e2d82830d209820297ca104a00ad0b147389b.tar.gz
scala-164e2d82830d209820297ca104a00ad0b147389b.tar.bz2
scala-164e2d82830d209820297ca104a00ad0b147389b.zip
- Moved into files/run/bugs.scala
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/bug217.scala13
-rw-r--r--test/files/pos/bug222.scala6
2 files changed, 0 insertions, 19 deletions
diff --git a/test/files/pos/bug217.scala b/test/files/pos/bug217.scala
deleted file mode 100644
index 15a9f16a1b..0000000000
--- a/test/files/pos/bug217.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-object Test {
-
- def foo[t](fun: Function0[t]): t = fun();
-
- def bar(x: Int): Unit = {
- foo(() => 0);
- ()
- }
-
- def main(args: Array[String]): Unit = bar(32);
-
-}
-
diff --git a/test/files/pos/bug222.scala b/test/files/pos/bug222.scala
deleted file mode 100644
index 342b2ef469..0000000000
--- a/test/files/pos/bug222.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-object Test {
- def main(args:Array[String]): Unit = {
- val array: Array[String] = new Array(16);
- ()
- }
-}