Tests: fix test for AS 3.6

This commit is contained in:
Dmitry Gridin
2020-02-27 15:37:35 +07:00
parent ca3c72c143
commit 5827be4182
@@ -0,0 +1,11 @@
import org.jetbrains.annotations.NotNull;
import kotlin.properties.ReadOnlyProperty;
class J {
public static class Foo<T> implements ReadOnlyProperty<A<T>, B> {
public Foo(T t, @NotNull String s) {
}
}
}