[AA] split some SymbolByPsi tests on SingleSymbolByPsi to avoid redundant declarations
^KT-54311
This commit is contained in:
committed by
Space Team
parent
804a92546c
commit
a38e1747c3
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
// PRETTY_RENDERING_MODE: RENDER_SYMBOLS_NESTED
|
||||
|
||||
annotation class PropertyAnnotation
|
||||
annotation class FieldAnnotation
|
||||
annotation class GetAnnotation
|
||||
annotation class SetAnnotation
|
||||
annotation class SetparamAnnotation
|
||||
annotation class ExplicitGetAnnotation
|
||||
annotation class ExplicitSetAnnotation
|
||||
annotation class ExplicitSetparamAnnotation
|
||||
|
||||
@property:PropertyAnnotation
|
||||
@field:FieldAnnotation
|
||||
@get:GetAnnotation
|
||||
@set:SetAnnotation
|
||||
@setparam:SetparamAnnotation
|
||||
var x<caret>: Int = 0
|
||||
@ExplicitGetAnnotation
|
||||
get() = field
|
||||
@ExplicitSetAnnotation
|
||||
set(@ExplicitSetparamAnnotation value) {
|
||||
field = value
|
||||
}
|
||||
Reference in New Issue
Block a user