Consider the following: ```groovy trait T { static m() { def that = this that.something() } static something() {} } ``` The keyword `this` highlights as a parameter. Also, type inferenceing breaks down if it is assigned to another variable. 
Consider the following:
trait T { static m() { def that = this that.something() } static something() {} }The keyword
thishighlights as a parameter. Also, type inferenceing breaks down if it is assigned to another variable.