Create From Usage: Quick-fix for value parameters

This commit is contained in:
Alexey Sedunov
2014-09-30 14:09:38 +04:00
parent 73fc984c4c
commit 6ad2157806
58 changed files with 726 additions and 2 deletions
@@ -0,0 +1,7 @@
// "Create parameter 'foo'" "true"
class A<T> {
fun test<T>(n: Int) {
val t: T = <caret>foo
}
}