Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/callExpression/callWithJavaQualifierInMemberValDelegate.after.Dependency.java
2015-10-14 01:29:09 +03:00

10 lines
229 B
Java
Vendored

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) {
}
}
}