|
Scala example source code file (promotion.scala)
The Scala promotion.scala source code
/** Test that unboxing and promotion (from int to double) work together.
* Was bug 819.
*/
object Test {
def id[A](x: A): A = x;
def main(args: Array[String]): Unit = {
Console.println(id(1) * 2.0)
Console.println(3.0 * id(2))
Console.println(id(4.0) * 5)
Console.println(6 * id(5.0))
}
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala promotion.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.