Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.3.0-beta-1
-
None
-
None
Description
The following code fails because initial expressions are not transformed:
trait Dummyable { String x = this.class.name void info() { assert x == this.class.name } } class Util implements Dummyable {} def util = new Util() util.info()