Files
kotlin-fork/idea/testData/inspections/naming/function/test.kt
T
2018-07-17 02:22:14 +03:00

15 lines
161 B
Kotlin
Vendored

fun Foo() {}
fun FOO_BAR() {}
fun xyzzy() {}
fun `a b`() {}
interface I {
fun a_b()
}
class C : I {
override fun a_b() {} // Shouldn't be reported
}