"Create type parameter from usage": don't remove backticks if necessary

#KT-33299 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-09-20 18:00:18 +09:00
committed by Dmitry Gridin
parent bfc698a521
commit 5b666ff33f
4 changed files with 16 additions and 1 deletions
@@ -0,0 +1,4 @@
// "Create type parameter 'test text' in function 'a'" "true"
fun a() {
val c: `test text`<caret>
}
@@ -0,0 +1,4 @@
// "Create type parameter 'test text' in function 'a'" "true"
fun <`test text`> a() {
val c: `test text`
}