summaryrefslogtreecommitdiff
path: root/test/files/run/t4742.flags
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-09-24 15:09:16 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-09-24 15:15:06 +0200
commitfa271e24342831bb6d7b683fddd1a4a11825d39d (patch)
treeb1004cae617496946a7c256becbbc3b534bd02b0 /test/files/run/t4742.flags
parentc2e3b0656bb449e95a529e266294aeabb9cbef3f (diff)
downloadscala-fa271e24342831bb6d7b683fddd1a4a11825d39d.tar.gz
scala-fa271e24342831bb6d7b683fddd1a4a11825d39d.tar.bz2
scala-fa271e24342831bb6d7b683fddd1a4a11825d39d.zip
SI-4742 Make -Xcheckinit aware of constants.
Members defined as `final val x = <literal>` are given a ConstantType. The constant is folded into the accessor method `x`, and the field itself is never initialized. (Related discussion: SI-4605) As such, -Xcheckinit spuriously warns when calling that accessor. This commit disables the checks for constants. This will also fix the checkinit build (failure tracked as SI-7839), which is the victim of this a spurious scolding.
Diffstat (limited to 'test/files/run/t4742.flags')
-rw-r--r--test/files/run/t4742.flags1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/files/run/t4742.flags b/test/files/run/t4742.flags
new file mode 100644
index 0000000000..ae08446055
--- /dev/null
+++ b/test/files/run/t4742.flags
@@ -0,0 +1 @@
+-Xcheckinit \ No newline at end of file