samples/effectivelist/test/org/apidesign/effectivelist/ListMixinTest.scala
changeset 409 40cabcdcd2be
parent 403 ebe08056c60c
     1.1 --- a/samples/effectivelist/test/org/apidesign/effectivelist/ListMixinTest.scala	Sun Sep 02 22:00:13 2012 +0200
     1.2 +++ b/samples/effectivelist/test/org/apidesign/effectivelist/ListMixinTest.scala	Thu Oct 30 21:30:10 2014 +0100
     1.3 @@ -9,7 +9,8 @@
     1.4  
     1.5  class ListMixinTest {
     1.6    // BEGIN: effectivelist.convert
     1.7 -  class ListablePoint(x: Int, y: Int) extends Point(x,y) with Listable[ListablePoint] {
     1.8 +  class ListablePoint(x: Int, y: Int)
     1.9 +  extends Point(x,y) with Listable[ListablePoint] {
    1.10      def this(r : Point) = this(r.x, r.y)
    1.11    }
    1.12    implicit def toList(p : Point) : ListablePoint = new ListablePoint(p)