Is it intended behavior that this should crash wit...
# compose
s
Is it intended behavior that this should crash with the error “Reversed range is not supported”?
Copy code
val bob = AnnotatedString.Builder()
bob.append("...")
bob.addStyle(ParagraphStyle(), start=2, end=3)
bob.addStyle(ParagraphStyle(), start=0, end=1)
Text(bob.toAnnotatedString())