Metadata

ID: kotlin-code-style/type-argument-comment

Language: Kotlin

Severity: Notice

Category: Code Style

Description

No description found

Non-Compliant Code Examples

fun Foo<out /* some comment */ Any>.foo() {}

Compliant Code Examples

fun Foo<
    /* some comment */ 
    out Any
    >.foo() {}
fun Foo<
    // some comment 
    out Any
    >.foo() {}