aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/desugar.scala
blob: fbf55d18b6ca366db0527e2f2846ea69e162a044 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
object desugar {

  // variables
  var x: Int = 2
  var y = x * x
  
  { var z: Int = y }
 
  def foo0(first: Int, second: Int = 2, third: Int = 3) = first + second
  def foo1(first: Int, second: Int = 2)(third: Int = 3) = first + second
  def foo2(first: Int)(second: Int = 2)(third: Int = 3) = first + second
  
  object caseClasses { self =>
    trait List[+T] {
      def head: T
      def tail: List[T]
    }

    case class Cons[+T](val head: T, val tail: List[T]) extends List[T]

    object Cons {
      def apply[T](head: T): Cons[T] = apply(head, Nil)
    }

    case object Nil extends List[Nothing]
  }
  
  import caseClasses._
  
  object patDefs {
    
    val xs = Cons(1, Cons(2, Nil))
    
    val Cons(y, ys) = xs
    val Cons(z, _) = xs
    val Cons(_, _) = xs
  }
}