Files
kotlin-fork/analysis/symbol-light-classes/testData/annotationsEquality/OverrideMethod.java
T
Dmitrii Gridin 3b9318bd3a [SLC] LazyAnnotationsBox: drop redundant synchronization
We can use less strict rule for produced annotations:
* Previously: the same annotations from `findAnnotation` and `annotations`
have the same identity
* Now: the same annotations from `findAnnotation` and `annotations`
are equals by 'equals'

^KT-56046
2023-02-03 19:49:03 +00:00

7 lines
182 B
Java
Vendored

public final class OverrideMethod /* one.OverrideMethod*/ extends one.AbstractClass {
@java.lang.Override()
public void foo();// foo()
public OverrideMethod();// .ctor()
}