blob: 0714ecfe997afa07bd35ff4c7a7a11ea9d8775c4 [file] [log] [blame]
import org.jetbrains.annotations.Contract;
class A {
<spot>@Contract("any->null")</spot>
Object getObject() {
//do smth
return null;
}
}