summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-08-17 09:14:09 -0700
committerPaul Phillips <paulp@improving.org>2012-08-17 09:14:09 -0700
commitb794f4a87f5217fd381f129cd75946a2ced6eb44 (patch)
tree872c1c5b20effcc499a3b1141ab4d9c1900bf2a9 /test/files/pos
parent62d319e46ff672f523e266009025fe3723651229 (diff)
parent7fc860963a4f76cb18e44c20f2bdfb49641033f3 (diff)
downloadscala-b794f4a87f5217fd381f129cd75946a2ced6eb44.tar.gz
scala-b794f4a87f5217fd381f129cd75946a2ced6eb44.tar.bz2
scala-b794f4a87f5217fd381f129cd75946a2ced6eb44.zip
Merge remote-tracking branch 'origin/2.10.x' into merge-210
# By Eugene Burmako (12) and others # Via Paul Phillips (4) and others * origin/2.10.x: Fixes SI-6236. Fixes SI-6189. Hunting down eliminable :: allocations. Absolutize tools.nsc => scala.tools.nsc. more cleanup for typedMacroBody shaves more than 150 lines off typedMacroBody Optimization in SubstMap. removes dead code pull request feedback more macro cleanup further cleanup of transformTypeTagEvidenceParams macroImplSigs => macroImplSig Dominik's comments on api.Mirrors phaseId(currentPeriod) >= erasurePhase.id materializeImplicit and implicitsOfExpectedType cleanup of reflection- and macro-related stuff adds the `skipPackage` attribute to Scaladoc Fixes backend crash due to incorrect consumedTypes Fix SI-6208. mutable.Queue now returns mutable.Queue for collection methods rather than MutableList.
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/t6208.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/pos/t6208.scala b/test/files/pos/t6208.scala
new file mode 100644
index 0000000000..dac571346d
--- /dev/null
+++ b/test/files/pos/t6208.scala
@@ -0,0 +1,4 @@
+object Test {
+ val col = collection.mutable.Queue(1,2,3)
+ val WORK: collection.mutable.Queue[Int] = col filterNot (_ % 2 == 0)
+}