enable infix quickfix in cleanup

This commit is contained in:
Dmitry Jemerov
2015-10-09 12:31:33 +02:00
parent 6ca3a9fe9f
commit 07d3ab792a
3 changed files with 9 additions and 0 deletions
+4
View File
@@ -59,6 +59,8 @@ class C {
fun foo() {}
fun bar() = ::foo
fun willBeInfix(i: Int) {}
}
fun typed<T>() {
@@ -66,3 +68,5 @@ fun typed<T>() {
fun <T : Cloneable> withTypeParameters() where T : Comparable<T> {
}
C() willBeInfix 1
+4
View File
@@ -58,6 +58,8 @@ class C {
fun foo() {}
fun bar() = C::foo
fun willBeInfix(i: Int) {}
}
fun <T> typed() {
@@ -65,3 +67,5 @@ fun <T> typed() {
fun <T> withTypeParameters() where T : Cloneable, T : Comparable<T> {
}
C() willBeInfix 1