Weak errors introduced

This commit is contained in:
Andrey Breslav
2011-10-13 14:39:47 +04:00
parent ae4ca1ef21
commit a1be8afd61
5 changed files with 139 additions and 109 deletions
@@ -58,9 +58,9 @@ namespace null_safety {
command<!UNSAFE_CALL!>.<!>foo
command.equals(null)
command<!UNNECESSARY_SAFE_CALL!>?.<!>equals(null)
command?.equals(null)
command.equals1(null)
command<!UNNECESSARY_SAFE_CALL!>?.<!>equals1(null)
command?.equals1(null)
val c = Command()
c<!UNNECESSARY_SAFE_CALL!>?.<!>equals2(null)