You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used Java 11 for a long time and I had an extension method indent on String that indents a string.
Java 12 and above introduced its own indent method. As a result, my existing code broke, like demonstrated in the following code.
Compiler version
v3.2.2-RC2
Minimized code
extension (text: String)
defindent:String= text
println("hello".indent)