Files
Alexey Tsvetkov b8dbdc9327 JPS: implement tracking of null annotations
#KT-12933 fixed
    #KT-14266 fixed
2017-01-24 19:10:38 +03:00

5 lines
87 B
Java
Vendored

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