Report 'free function called as extension' on Function subclasses
You can't make a value of some type invokable as an extension by adding 'extension' annotation to the type
This commit is contained in:
@@ -1,3 +1,13 @@
|
||||
fun foo(a: (String) -> Unit) {
|
||||
"".<!FREE_FUNCTION_CALLED_AS_EXTENSION!>a<!>()
|
||||
}
|
||||
|
||||
|
||||
|
||||
interface A : (String) -> Unit {}
|
||||
|
||||
fun foo(a: @extension A) {
|
||||
// @extension annotation on an unrelated type shouldn't have any effect on this diagnostic.
|
||||
// Only kotlin.Function{n} type annotated with @extension should
|
||||
"".<!FREE_FUNCTION_CALLED_AS_EXTENSION!>a<!>()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user