Re: Type conflict (type argument versus abstract method)
No replies
Mon, 2010-12-13, 23:16
Sciss
Joined: 2008-12-17,
trait GE[ R <: Rate ] {
type rate = R
}
this seems correct. i can do someGE.rate match { ... } . didn't know this was possible for type members (thought there was some erasure happening). interesting....