mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 15:51:54 +00:00
10 lines
244 B
Java
Vendored
10 lines
244 B
Java
Vendored
// 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);
|
|
}
|