Here's a made up example to illustrate how this co...
# language-proposals
a
Here's a made up example to illustrate how this could work: For a Java interface like:
Copy code
public interface SamJava {
    void many(@NonNull String a,
              @NonNull AccidentalSamInterface b,
              @NonNull AccidentalSamInterface c,
              @NonNull AccidentalSamInterface d,
              @NonNull SamInterface e);

    interface SamInterface {
        void doSomething();
    }

    interface AccidentalSamInterface {
        String getSomeString();
    }
}