summaryrefslogtreecommitdiff
path: root/test/files/neg/t7292-deprecation.check
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2013-06-21 21:36:20 +0200
committerSimon Ochsenreither <simon@ochsenreither.de>2013-06-21 21:36:20 +0200
commit48bcc1845a010a74b7fc47a2e68c6d8518c30608 (patch)
tree185ce48d9f621764eb92af478e81fb589075310f /test/files/neg/t7292-deprecation.check
parent0ebdc586ca347b2ced5a26bd0f91203228859b01 (diff)
downloadscala-48bcc1845a010a74b7fc47a2e68c6d8518c30608.tar.gz
scala-48bcc1845a010a74b7fc47a2e68c6d8518c30608.tar.bz2
scala-48bcc1845a010a74b7fc47a2e68c6d8518c30608.zip
SI-7292 Fixes test failures by updating *.check files
Looks like partest's confusion about / vs. \ was fixed between the original Jenkins run of the fix for SI-7292 and its merge.
Diffstat (limited to 'test/files/neg/t7292-deprecation.check')
-rw-r--r--test/files/neg/t7292-deprecation.check12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/files/neg/t7292-deprecation.check b/test/files/neg/t7292-deprecation.check
index c7e6111962..17f010dfdf 100644
--- a/test/files/neg/t7292-deprecation.check
+++ b/test/files/neg/t7292-deprecation.check
@@ -1,11 +1,11 @@
-t7292-deprecation.scala:2: warning: Octal escape literals are deprecated, use /u0000 instead.
- val chr1 = '/0'
+t7292-deprecation.scala:2: warning: Octal escape literals are deprecated, use \u0000 instead.
+ val chr1 = '\0'
^
-t7292-deprecation.scala:3: warning: Octal escape literals are deprecated, use /u0053 instead.
- val str1 = "abc/123456"
+t7292-deprecation.scala:3: warning: Octal escape literals are deprecated, use \u0053 instead.
+ val str1 = "abc\123456"
^
-t7292-deprecation.scala:4: warning: Octal escape literals are deprecated, use /n instead.
- val lf = '/012'
+t7292-deprecation.scala:4: warning: Octal escape literals are deprecated, use \n instead.
+ val lf = '\012'
^
error: No warnings can be incurred under -Xfatal-warnings.
three warnings found