|
Scala example source code file (sig.scala)
The Scala sig.scala source codepackage test /* Tests correct generation of Java signatures. The local method 'bar' should * not get a generic signature, as it may refer to type parameters of the enclosing * method, and the JVM does not know about nested methods. */ class Outer { def foo[A, B](x: A, y: B) = { def bar[X](x1: A, y1: B, z1: X) = z1 bar(x, y, 10) } } Other Scala examples (source code examples)Here is a short list of links related to this Scala sig.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.