blob: 0714ecfe997afa07bd35ff4c7a7a11ea9d8775c4 [file] [log] [blame]
Tor Norbyea28de542013-09-11 15:53:32 -07001import org.jetbrains.annotations.Contract;
2
3class A {
4
5 <spot>@Contract("any->null")</spot>
6 Object getObject() {
7 //do smth
8 return null;
9 }
10}