|
Scala example source code file (bug2162.scala)
The Scala bug2162.scala source code
class Foo(x: Int)
class Bar extends Foo(1)
trait A {
def foo[T <: Foo]
}
class B extends A {
def foo[Bar] { println("B.foo[Bar]") }
}
object Test {
val x = new B
val y = new A {
def foo[Bar] { println("A.foo[Bar]") }
}
def main(args: Array[String]) {
x.foo // ok
y.foo // java.lang.AssertionError: assertion failed (Erasure.scala:441 in r18338))
}
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala bug2162.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.