mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
AllOpen plugin can make some changes and we don't have the tools to make
correct decision based on psi
#KT-17857 Fixed
26 lines
244 B
Kotlin
Vendored
26 lines
244 B
Kotlin
Vendored
// test.C
|
|
package test
|
|
|
|
annotation class AllOpen
|
|
|
|
@AllOpen
|
|
class C {
|
|
fun f() {}
|
|
|
|
fun g() {}
|
|
|
|
val p: Int
|
|
|
|
class D {
|
|
fun z() {
|
|
|
|
}
|
|
}
|
|
|
|
@AllOpen
|
|
class H {
|
|
fun j() {}
|
|
}
|
|
}
|
|
|
|
// LAZINESS:NoLaziness |