Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/callExpression/callWithJavaQualifierInMemberValDelegate.after.Dependency.java
2015-05-27 16:15:44 +03:00

10 lines
229 B
Java

import kotlin.properties.ReadOnlyProperty;
import org.jetbrains.annotations.NotNull;
class J {
public static class Foo<T> implements ReadOnlyProperty<A<T>, B> {
public Foo(T t, @NotNull String s) {
}
}
}