summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-08-28 15:42:41 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-09-11 23:22:06 +0200
commit97255e7c4e31614b52f0584a75206fd621198ed4 (patch)
tree28ede83c75dfa4b087f9af459b92d08715876133 /test/files/pos
parenta49b4b6375aec85cb9f827eaea42b19d0719e577 (diff)
downloadscala-97255e7c4e31614b52f0584a75206fd621198ed4.tar.gz
scala-97255e7c4e31614b52f0584a75206fd621198ed4.tar.bz2
scala-97255e7c4e31614b52f0584a75206fd621198ed4.zip
SI-1909 Move tests from pos to run
When we're in the neighbourhood of VerifyErrors, it's better to run the code. This change is leading up to a fix for SI-3832, which regressed with fix for SI-1909.
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/t1909.scala8
-rw-r--r--test/files/pos/t1909b-pos.scala6
2 files changed, 0 insertions, 14 deletions
diff --git a/test/files/pos/t1909.scala b/test/files/pos/t1909.scala
deleted file mode 100644
index 01213f62a3..0000000000
--- a/test/files/pos/t1909.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-// Until #1909 is fixed, if this compiles the bytecode
-// will trigger a VerifyError. This liftings and the one
-// in 1909b.scala actually happen in two different places
-// (uncurry and lambdalifter.)
-class Ticket1909 {
- def this(value: Int) = this()
- def this(p: String) = this(try 0)
-}
diff --git a/test/files/pos/t1909b-pos.scala b/test/files/pos/t1909b-pos.scala
deleted file mode 100644
index b914bee366..0000000000
--- a/test/files/pos/t1909b-pos.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-class Ticket1909 (x: Int) {
- def this() = this({
- def bar() = 5
- bar
- })
-} \ No newline at end of file