aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i1687.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/i1687.scala')
-rw-r--r--tests/pos/i1687.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/pos/i1687.scala b/tests/pos/i1687.scala
new file mode 100644
index 000000000..d91c851e6
--- /dev/null
+++ b/tests/pos/i1687.scala
@@ -0,0 +1,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
+ }
+}