aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i1687.scala
blob: d91c851e68ae9ac405db615f37d56fe075a758d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object O {
  def f: String = {
    "1" + 1 + "1" + 1 +
    "1" + 1 + "1" + 1 +
    "1" + 1 + "1" + 1 +
    "1" + 1 + "1" + 1 +
    "1" + 1 + "1" + 1 +
    "1" + 1 + "1" + 1
  }
}