Consider the following: ```groovy package test20 class MyBean {} ``` And: ```groovy package test20 class Test20 { List<MyBean> list } ``` Now rename `MyBean` to `MyBean2`: the reference to `MyBean` type in the declaration of `Test20.list` is not updated with the new name.
Consider the following:
And:
Now rename
MyBeantoMyBean2: the reference toMyBeantype in the declaration ofTest20.listis not updated with the new name.