aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/channels.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/channels.scala')
-rw-r--r--tests/pending/pos/channels.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/pending/pos/channels.scala b/tests/pending/pos/channels.scala
index b2f0cdc32..77736305f 100644
--- a/tests/pending/pos/channels.scala
+++ b/tests/pending/pos/channels.scala
@@ -1,3 +1,5 @@
+// To compile this test, we need some more elaborate GADT capabilities.
+// Not sure yet we should invest to get them.
class Channel[a]
import collection.mutable.Set
@@ -16,7 +18,7 @@ object Test extends App {
def f[b](x: ![b]): Int = x match {
case send: ![c] =>
send.chan match {
- case IC => send.data
+ case IC => send.data // Here, from the fact that `chan` is an IC, we need to conclude that `c` is Int.
}
}
}