fun @receiver:MyAnnotation7 @MyAnnotation8 kotlin.Int.memberFunctionWithReceiver()

fun @receiver:MyAnnotation7 @MyAnnotation8 kotlin.Int?.memberFunctionWithReceiverWithNullableReceiver(l: kotlin.Long)

val withDefaultGetter: kotlin.Int
  @Anno
  get()

var withDefaultSetter: kotlin.String
  @Anno
  set(value: kotlin.String)

var both: kotlin.String
  @Anno
  get()
  @Anno
  set(value: kotlin.String)

@MyAnnotation4
var allAnnotations: kotlin.String
  @MyAnnotation
  get()
  @MyAnnotation2
  set(@MyAnnotation3 value: kotlin.String)

var @receiver:MyAnnotation7 @MyAnnotation8 kotlin.Int.memberPropertyWithReceiver: kotlin.Unit
  get()
  set(value: kotlin.Unit)

@Anno
internal var withCustomSetter: kotlin.String
  internal set(value: kotlin.String)

@Anno
internal var withCustomGetter: kotlin.String
  internal get()

@Anno
internal var custom: kotlin.String
  internal get()
  internal set(value: kotlin.String)

@Anno
internal var variable: kotlin.String

constructor(withDefaultGetter: kotlin.Int, withDefaultSetter: kotlin.String, both: kotlin.String, @MyAnnotation6 allAnnotations: kotlin.String)