|
Scala example source code file (bug500.scala)
The Scala bug500.scala source codeobject Magic { abstract class O[X,Y] { type T >: X <: Y; class I { def magic(v: T): T = v; } } def magic[X,Y](v: X): Y = { val o: O[X,Y] = null; val i: o.I = new o.I(); i.magic(v); } } object Test { def main(args: Array[String]): Unit = { try { val i: Int = Magic.magic("42"); Console.println(i); } catch { case ex: Throwable => ex.printStackTrace() } } } Other Scala examples (source code examples)Here is a short list of links related to this Scala bug500.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.