lateinit is not allowed in custom setters. How wou...
# announcements
n
lateinit is not allowed in custom setters. How would you perform the following in an idiomatic way?
Copy code
lateinit var sampleService: SampleService
        @Autowired set(value) {
            field = value
        }