Files
kotlin-fork/compiler/testData/diagnostics/tests/modifiers/NoLocalVisibility.kt
T
2015-09-30 19:38:16 +03:00

6 lines
207 B
Kotlin
Vendored

fun foo() {
<!WRONG_MODIFIER_TARGET!>public<!> class A
<!WRONG_MODIFIER_TARGET!>private<!> class B
<!WRONG_MODIFIER_TARGET!>protected<!> class C
<!WRONG_MODIFIER_TARGET!>internal<!> class D
}