Here is a short program that crashes the scala compiler (version 2.12.2) with a java.lang.StackOverflowError. ``` object Main { def f ( implicit x : Int ) : Unit = {} def g () : Unit = { f _ } }