[SLC] Ignore callables with invalid or absent names (KTIJ-23584)
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
public abstract interface Foo /* test.Foo*/ {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public abstract java.lang.String foo();// foo()
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
public abstract interface Foo /* test.Foo*/ {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public abstract java.lang.String foo();// foo()
|
||||
|
||||
public abstract int <no name provided>();// <no name provided>()
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
// test.Foo
|
||||
package test
|
||||
|
||||
interface Foo {
|
||||
fun foo(): String
|
||||
fun (): Int
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public abstract interface Foo /* test.Foo*/ {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public abstract java.lang.String getFoo();// getFoo()
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
// test.Foo
|
||||
package test
|
||||
|
||||
interface Foo {
|
||||
val foo: String
|
||||
val
|
||||
}
|
||||
Reference in New Issue
Block a user