summaryrefslogtreecommitdiff
path: root/test/pending/neg/t2994b.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-05-30 16:55:39 -0700
committerPaul Phillips <paulp@improving.org>2013-05-31 04:21:43 -0700
commit14534c693d2eb6acafaf8244c14b5643388fbd67 (patch)
tree20b5bb989a4629bc794e1c9fae591dd5d98ede10 /test/pending/neg/t2994b.scala
parentcfef577e478161bd4d1e24626e0909c80c04e1b9 (diff)
downloadscala-14534c693d2eb6acafaf8244c14b5643388fbd67.tar.gz
scala-14534c693d2eb6acafaf8244c14b5643388fbd67.tar.bz2
scala-14534c693d2eb6acafaf8244c14b5643388fbd67.zip
SI-7517 type constructors too eagerly normalized.
I think 403eadd0f1 was largely a symptomatic remedy (not that we shouldn't harden against such outcomes) and that this commit gets closer to the root causes. The unanticipated change to test/files/run/t6113.check is like a cry of support from the jury box. -Foo[[X](Int, X)] +Foo[AnyRef{type l[X] = (Int, X)}#l] We should continue to look at calls to normalize with grave suspicion.
Diffstat (limited to 'test/pending/neg/t2994b.scala')
-rw-r--r--test/pending/neg/t2994b.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/pending/neg/t2994b.scala b/test/pending/neg/t2994b.scala
new file mode 100644
index 0000000000..20be85eb58
--- /dev/null
+++ b/test/pending/neg/t2994b.scala
@@ -0,0 +1,8 @@
+trait curry[s[_]] { type f = Double }
+
+// a1 and a2 fail to compile, but all three should fail.
+class A {
+ type a1[s[_ <: Int]] = curry[s]
+ type a2[s[_ <: Int]] = curry[s]#f
+ type a3[s[_ <: Int]] = Set[curry[s]#f]
+}