Fix tests: "infix modifier required" and "operator modifier required" errors
This commit is contained in:
@@ -2,8 +2,8 @@ package zzz
|
||||
|
||||
public class A(val a: Int, val b: Int)
|
||||
|
||||
inline fun A.component1() = a
|
||||
operator inline fun A.component1() = a
|
||||
|
||||
inline fun A.component2() = b
|
||||
operator inline fun A.component2() = b
|
||||
|
||||
//SMAP ABSENT
|
||||
@@ -2,6 +2,6 @@ package zzz
|
||||
|
||||
public class A(val p: Int)
|
||||
|
||||
inline fun A.iterator() = (1..p).iterator()
|
||||
operator inline fun A.iterator() = (1..p).iterator()
|
||||
|
||||
//SMAP ABSENT
|
||||
Reference in New Issue
Block a user