12 lines
276 B
Kotlin
Vendored
12 lines
276 B
Kotlin
Vendored
// "Make function foo open" "true"
|
|
// FIXTURE_CLASS: org.jetbrains.kotlin.idea.spring.tests.SpringTestFixtureExtension
|
|
// DISABLE-ERRORS
|
|
import org.springframework.context.annotation.Bean
|
|
|
|
@Bean
|
|
annotation class MyBean
|
|
|
|
open class Foo {
|
|
@MyBean
|
|
fun <caret>foo() = ""
|
|
} |