aboutsummaryrefslogtreecommitdiff
path: root/tests/run/stringbuilder-drop.scala
blob: 422fb2bc7cca245b06709f7056762360713f514f (plain) (blame)
1
2
3
4
5
6
7
object Test {
  def main(args: Array[String]): Unit = {
    val s = (new StringBuilder ++= "hello world") dropRight 1
    assert("" + s == "hello worl")
  }
}