blob: 67f883a8d496e4ad3151b5fa821e325aae406bd4 [file]
// WITH_KOTLIN_JVM_ANNOTATIONS
package test;
import kotlin.annotations.jvm.*;
public interface LoadIterableWithConflict<T> {
public @ReadOnly @Mutable Iterable<T> getIterable();
public void setIterable(@ReadOnly @Mutable Iterable<T> Iterable);
}