summaryrefslogtreecommitdiff
path: root/test/files/neg/bug1010.scala
blob: 7a1e6615e55245489d9c7b81ab233a260cedf43c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class MailBox {
 class Message
 //type Message = AnyRef
}

abstract class Actor {
 private val in = new MailBox

 def send(msg: in.Message) =  error("foo")

 def unstable: Actor = error("foo")

 def dubiousSend(msg: MailBox#Message): Nothing =
   unstable.send(msg) // in.Message becomes unstable.Message, but that's ok since Message is a concrete type member
}