Metadata

ID: kotlin-code-style/annotation-blank-line

Language: Kotlin

Severity: Notice

Category: Code Style

Description

No description found

Non-Compliant Code Examples

fun a()
@Bar
fun b()

Compliant Code Examples

fun a()

@Bar
fun b()