summaryrefslogtreecommitdiff
path: root/test/files/specialized
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2011-03-23 14:28:23 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2011-03-23 14:28:23 +0000
commit26643c870b0308e903eb097cae8bae78180c0f4a (patch)
tree58763275fb7adeff67f7434f777c76fe2346d77e /test/files/specialized
parentb40373367e6803349470ecabc3ef646f50353139 (diff)
downloadscala-26643c870b0308e903eb097cae8bae78180c0f4a.tar.gz
scala-26643c870b0308e903eb097cae8bae78180c0f4a.tar.bz2
scala-26643c870b0308e903eb097cae8bae78180c0f4a.zip
Merged revisions 24541-24548 via svnmerge from
https://lampsvn.epfl.ch/svn-repos/scala/scala/trunk ........ r24541 | odersky | 2011-03-22 17:46:49 +0100 (Tue, 22 Mar 2011) | 1 line Added headers with copyright messages. ........ r24542 | odersky | 2011-03-22 18:18:09 +0100 (Tue, 22 Mar 2011) | 1 line Added test that signatures conform to their erasures. Work in progress. Review by extempore. ........ r24543 | prokopec | 2011-03-22 19:22:21 +0100 (Tue, 22 Mar 2011) | 1 line Adding the `seq` method to all collections. Removing `pforeach`. ........ r24544 | prokopec | 2011-03-22 19:22:25 +0100 (Tue, 22 Mar 2011) | 6 lines Implementing foreach to work in parallel in ParIterableLike. Doing a bunch of refactoring around in the collection framework to ensure a parallel foreach is never called with a side-effecting method. This still leaves other parts of the standard library and the compiler unguarded. No review. ........ r24545 | prokopec | 2011-03-22 19:23:28 +0100 (Tue, 22 Mar 2011) | 3 lines Adding some tests for #3651. No review. ........ r24546 | odersky | 2011-03-22 23:59:03 +0100 (Tue, 22 Mar 2011) | 1 line Better signature avoidance. Review by extempore. ........ r24547 | extempore | 2011-03-23 08:59:18 +0100 (Wed, 23 Mar 2011) | 11 lines My early attempts to implement non-integral ranges in a way which was useful without having lots of floating point traps were less than successful. One of the bigger backfires is that the requirement not to round (trying, and failing anyway, to avoid surprises with methods like "contains") inflicts runtime errors. The simple way to improve this, which seems a good idea anyway, is to make the default math context something less inclined to exceptions. Default BigDecimal mc is now DECIMAL128. References #1812, #4201 and puts #4201 back to normal priority. Review by community. ........ r24548 | magarcia | 2011-03-23 13:33:27 +0100 (Wed, 23 Mar 2011) | 1 line sn.OClone caused checkinit failure when assigned to CompilerTermNames.clone_ . review by rytz. ........
Diffstat (limited to 'test/files/specialized')
-rw-r--r--test/files/specialized/tb3651.check1
-rw-r--r--test/files/specialized/tb3651.scala11
-rw-r--r--test/files/specialized/tc3651.check1
-rw-r--r--test/files/specialized/tc3651.scala15
4 files changed, 28 insertions, 0 deletions
diff --git a/test/files/specialized/tb3651.check b/test/files/specialized/tb3651.check
new file mode 100644
index 0000000000..c227083464
--- /dev/null
+++ b/test/files/specialized/tb3651.check
@@ -0,0 +1 @@
+0 \ No newline at end of file
diff --git a/test/files/specialized/tb3651.scala b/test/files/specialized/tb3651.scala
new file mode 100644
index 0000000000..1f64080649
--- /dev/null
+++ b/test/files/specialized/tb3651.scala
@@ -0,0 +1,11 @@
+class Klass[@specialized(Long) A]( val a: A )
+
+class LongKlass( override val a: Long ) extends Klass[Long](a)
+
+object Test {
+ def main(args: Array[String]) {
+ val lk = new LongKlass(10)
+ lk.a
+ println(runtime.BoxesRunTime.longBoxCount)
+ }
+}
diff --git a/test/files/specialized/tc3651.check b/test/files/specialized/tc3651.check
new file mode 100644
index 0000000000..c227083464
--- /dev/null
+++ b/test/files/specialized/tc3651.check
@@ -0,0 +1 @@
+0 \ No newline at end of file
diff --git a/test/files/specialized/tc3651.scala b/test/files/specialized/tc3651.scala
new file mode 100644
index 0000000000..447edee3bf
--- /dev/null
+++ b/test/files/specialized/tc3651.scala
@@ -0,0 +1,15 @@
+
+
+
+
+class Base[@specialized(Int) A](val a: A)
+
+class Derived(override val a: Int) extends Base[Int](a)
+
+object Test {
+ def main(args: Array[String]) {
+ val lk: Base[Int] = new Derived(10)
+ lk.a
+ println(runtime.BoxesRunTime.integerBoxCount)
+ }
+}