Overload callable references are now supported - changed code accordingly
This commit is contained in:
@@ -6,4 +6,4 @@ fun bar(){
|
||||
foo(<caret>)
|
||||
}
|
||||
|
||||
// ABSENT: ::Date
|
||||
// EXIST: ::Date
|
||||
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
class A {
|
||||
fun foo(p: (Int) -> Any){}
|
||||
|
||||
fun bar() {
|
||||
foo(<caret>)
|
||||
}
|
||||
}
|
||||
|
||||
class B() {
|
||||
constructor(p: Int) : this(){}
|
||||
}
|
||||
|
||||
// EXIST: ::B
|
||||
Reference in New Issue
Block a user