Files
Alexey Tsvetkov 05f278ce20 JPS: implement tracking of null annotations
#KT-12933 fixed
    #KT-14266 fixed
2017-03-20 18:45:21 +01:00

5 lines
87 B
Java
Vendored

import org.jetbrains.annotations.Nullable;
class A {
@Nullable String s = "A.s";
}