enable infix quickfix in cleanup
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user