summaryrefslogtreecommitdiff
path: root/test/files/pos/t1035.scala
blob: 5c8670aae30b2d2de18ce9bbdc15c92dabfbef1d (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
//A fatal error or Scala compiler
// Scala compiler version 2.7.1-final -- (c) 2002-2010 LAMP/EPFL
// Carlos Loria cloria@artinsoft.com
// 7/10/2008

class A  {
  var name:String = _
  def getName() = name
  def this(name:String, age:Int){this();this.name=name}
  
}

class B(name:String) extends A(name,0){
}

class D {

   object A {
     def unapply(p:A) = Some(p.getName)
   }
   
   object B {
     def unapply(p:B) = Some(p.getName)
   }
   def foo(p:Any) = p match {
      case B(n)    => println("B") 
      case A(n)    => println("A")  
      
        
   }

}