|
Scala example source code file (bug1112.scala)
The Scala bug1112.scala source code// checks that error doesn't crash the compiler // (due to isFunctionType normalizing Type1 to a function type, // but then the code that used that test not using the normalized type for further operations) class Test { type Type1 = () => Unit def call(p: Int)(f: => Type1) = { f() } def run = { call(0,() => System.out.println("here we are")) } } Other Scala examples (source code examples)Here is a short list of links related to this Scala bug1112.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.