From a37ae6ba6d75df714709b7890e257e06ea110b19 Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Thu, 16 Apr 2015 20:48:48 +0300 Subject: [PATCH] Test fixed accordingly with KT-3175 --- idea/testData/checker/Casts.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/testData/checker/Casts.kt b/idea/testData/checker/Casts.kt index 908b95f749d..c4264cf2a8e 100644 --- a/idea/testData/checker/Casts.kt +++ b/idea/testData/checker/Casts.kt @@ -8,7 +8,7 @@ fun test() : Unit { y as Int : Int x as Int? : Int? y as Int? : Int? - x as? Int : Int? + x as Int? : Int? y as? Int : Int? x as? Int? : Int? y as? Int? : Int?