- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Abstract type member mixin possible?
Fri, 2011-11-25, 17:44
Hi,
any chance to get this working with any experimental scalac switch or compiler plugin?
trait Sys[ S <: Sys[ S ]] {
type Entity
}
def test[ S <: Sys[ S ]] = new AnyRef with S#Entity { override def toString = "hallo" }
thanks, -sciss-
Fri, 2011-11-25, 21:47
#2
Re: Abstract type member mixin possible?
Try S with Sys[S] for the method argument type.
On Nov 25, 2011 11:44 AM, "Sciss" <contact@sciss.de> wrote:Hi,
any chance to get this working with any experimental scalac switch or compiler plugin?
trait Sys[ S <: Sys[ S ]] {
type Entity
}
def test[ S <: Sys[ S ]] = new AnyRef with S#Entity { override def toString = "hallo" }
thanks, -sciss-
Nevermind.... you. Need a known type to instatiate that. You could use implicits to look up a factory.
On Nov 25, 2011 11:44 AM, "Sciss" <contact@sciss.de> wrote: