summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/quasiquotes
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-01-07 17:05:30 +0100
committerEugene Burmako <xeno.by@gmail.com>2014-01-07 20:54:12 +0100
commitdb6e3062c13cc3c4d4a8a8245269b0c371657257 (patch)
tree756b819fbf08ff3b1f9d80d79a6c48cb1e8f3e9e /test/files/scalacheck/quasiquotes
parent527fd9aea58cf5c1b8f638d0321a8d0947d2916a (diff)
downloadscala-db6e3062c13cc3c4d4a8a8245269b0c371657257.tar.gz
scala-db6e3062c13cc3c4d4a8a8245269b0c371657257.tar.bz2
scala-db6e3062c13cc3c4d4a8a8245269b0c371657257.zip
ExistentialTypeTree.whereClauses are now MemberDefs
Today’s flight back to Lausanne wasn’t as productive as the recent flight to Minsk (https://github.com/scala/scala/pull/3305), but I noticed one minor thingie: ExistentialTypeTree had an imprecise type specified for its whereClauses. This is now fixed. I didn’t increment PickleFormat.*Version numbers, because this change introduces only a miniscule incompatibility with what would have been a meaningless and most likely crash-inducing pickle anyway.
Diffstat (limited to 'test/files/scalacheck/quasiquotes')
-rw-r--r--test/files/scalacheck/quasiquotes/ArbitraryTreesAndNames.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/scalacheck/quasiquotes/ArbitraryTreesAndNames.scala b/test/files/scalacheck/quasiquotes/ArbitraryTreesAndNames.scala
index c5cac3ea45..fe90d7222f 100644
--- a/test/files/scalacheck/quasiquotes/ArbitraryTreesAndNames.scala
+++ b/test/files/scalacheck/quasiquotes/ArbitraryTreesAndNames.scala
@@ -92,7 +92,7 @@ trait ArbitraryTreesAndNames {
yield DefDef(mods, name, tparams, vparamss, tpt, rhs)
def genExistentialTypeTree(size: Int) =
- for(tpt <- genTree(size - 1); where <- smallList(size, genTree(size - 1)))
+ for(tpt <- genTree(size - 1); where <- smallList(size, oneOf(genValDef(size - 1), genTypeDef(size - 1))))
yield ExistentialTypeTree(tpt, where)
def genFunction(size: Int) =