|
Scala example source code file (bug1434.scala)
The Scala bug1434.scala source codeobject Test { class A[T] { val op = null } class B extends A[Any] class C extends B def f(o: AnyRef) = o match { case a: A[_] if(a.op != null) => "with op" case c: C => "C" case b: B => "B" } def main(args: Array[String]) = { assert("C" == f(new C)) } } Other Scala examples (source code examples)Here is a short list of links related to this Scala bug1434.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.