c72622c6d7
New J2K: add SortModifiers inspection to post-processing #KT-32551 Fixed
9 lines
199 B
Plaintext
Vendored
9 lines
199 B
Plaintext
Vendored
// PROBLEM: Modifiers should follow annotations
|
|
annotation class Inject
|
|
annotation class VisibleForTesting
|
|
|
|
class Example {
|
|
<caret>@set:[Inject VisibleForTesting]
|
|
public var x: String = ""
|
|
}
|