fix JetPsiCheckerTest

This commit is contained in:
Dmitry Jemerov
2015-04-24 20:30:32 +02:00
parent 8258d72e23
commit 94071550e3
+2 -2
View File
@@ -9,10 +9,10 @@ fun test() : Unit {
checkSubtype<Int>(x as Int)
checkSubtype<Int>(y <warning>as Int</warning>)
checkSubtype<Int?>(x <warning>as Int?</warning>)
checkSubtype<Int?>(y <warning>as Int?</warning>)
checkSubtype<Int?>(y as Int?)
checkSubtype<Int?>(x <warning>as Int?</warning>)
checkSubtype<Int?>(y <warning>as? Int</warning>)
checkSubtype<Int?>(x <warning>as? Int?</warning>)
checkSubtype<Int?>(y <warning>as? Int?</warning>)
checkSubtype<Int?>(y as? Int?)
Unit
}