## reproduction steps using Scala (2.13.2), ```scala class Howdy(c: Class[_]) { def this() = this(getClass) } ``` ## problem Fails to compile with ``` Error:(8, 21) not found: value getClass def this() = this(getClass) ``` The above class compiles successfully with Scala 2.12.7.