alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (bug1112.scala)

This example Scala source code file (bug1112.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

int, int, test, test, type1, type1, unit, unit

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

 

new blog posts

 

Copyright 1998-2021 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.