When defining a property in an interface annotated with @org.jspecify.annotations.NullMarked, IntelliJ incorrectly reports that the property must be initialized. The inspection assumes it is a field, but it's actually an implicit getter/setter.
@NullMarked
public interface Test {
@val String test; // WARNING: @NullMarked fields must be initialized
}