Consider the following: ```groovy import groovy.transform.* class C implements Runnable { @TypeChecked void run() { } } ``` When applying the "Add missing `@Override` annotation" quick fix to `run()`, the result is: ``` @@Override TypeChecked void run() { } ```
Consider the following:
When applying the "Add missing
@Overrideannotation" quick fix torun(), the result is: