`-Xmulti-dollar-interpolation` creates regular str...
# compiler
c
-Xmulti-dollar-interpolation
creates regular strings after compilation right? Thus, it is completely safe to enable it in a library, it cannot lead to breaking changes in the future?
a
yes, this is correct
p
It can't lead to binary breaking changes, i.e. your clients wouldn't be affected. But in principle, as with any other experimental features it's possible than further updates of kotlin version would require code changes (although we don't expect any) to preserve same semantics.