Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49ce95ac6651db5c91015f9b0de5c3bff2185e61
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
mutability
/
LoadIterableWithConflict.java
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
);
}