mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Main targets for the fix is completion, parameters info, inlay hints and override/implement. Other IDE functions might be affected. #KT-24911 Fixed #KT-25616 Fixed #KT-25622 Fixed
11 lines
248 B
Java
Vendored
11 lines
248 B
Java
Vendored
package foo;
|
|
|
|
import androidx.annotation.RecentlyNonNull;
|
|
import androidx.annotation.RecentlyNullable;
|
|
|
|
public class A {
|
|
public @RecentlyNonNull String foo(@RecentlyNonNull String s1, @RecentlyNullable String s2) {
|
|
return null;
|
|
}
|
|
}
|