Formatter: format around safe cast operator as? (KT-32324)

#KT-32324 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-07-02 23:01:16 +09:00
committed by Nikolay Krasko
parent 44e9090931
commit 9f6e88d571
4 changed files with 12 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
fun main(a: Any) {
a as? String
}
+3
View File
@@ -0,0 +1,3 @@
fun main(a: Any) {
a as?String
}