Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
modifiers
/
NoLocalVisibility.kt
blob: 273e2cb965bfac3e29e708bbfb47d543e957ba20 [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
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
}