saveourtool/diktat
View on GitHubAdd exception for EXTENSION_FUNCTION_WITH_CLASS: external interfaces cannot have non-abstract functions inside them
Open
#790 opened on Mar 3, 2021
enhancementgood first issuehelp wantedneeded
Repository metrics
- Stars
- (571 stars)
- PR merge metrics
- (PR metrics pending)
Description
external interface Foo {
var bar: String
}
fun Foo.baz() {
prinltn("Lorem ipsum")
}
should be allowed.