summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-08-11 17:54:31 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-08-11 17:54:31 -0700
commit1aa578b5ac624639c20a51578521ccc630ee4816 (patch)
tree2faf948ab1ff5ef8363f35122da2f2fbc50c98c2 /test/files/pos
parent8cabda828541942016bb2ab08cc6e68716f43d7b (diff)
parent88c9a3cdf16a22a8e07091a7845d45f1ce6a0ff7 (diff)
downloadscala-1aa578b5ac624639c20a51578521ccc630ee4816.tar.gz
scala-1aa578b5ac624639c20a51578521ccc630ee4816.tar.bz2
scala-1aa578b5ac624639c20a51578521ccc630ee4816.zip
Merge pull request #1120 from paulp/ticket-6184-revised
Ticket 6184 revised
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/t6184.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/t6184.scala b/test/files/pos/t6184.scala
new file mode 100644
index 0000000000..83a1306aca
--- /dev/null
+++ b/test/files/pos/t6184.scala
@@ -0,0 +1,7 @@
+trait Foo[TroubleSome] {
+ type T <: Foo[TroubleSome]
+
+ this match {
+ case e: Foo[_]#T => ???
+ }
+} \ No newline at end of file