summaryrefslogblamecommitdiff
path: root/test/files/neg/bug845.scala
blob: 26c2df52dcb8e8560290840659888ee53f960c8a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                   
                            

                      
package test;

object Test extends Application {
  type Bar;
  trait FooImpl;

  trait Bob {
    def bar : Bar with FooImpl;
  }
  def ifn[A,B](a : A)(f : A => B) =
    if (a != null) f(a) else null;

  val bob : Bob = null;
  val bar = ifn(bob)(_.bar);
  assert(bar == null);
}