Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
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
);
}