about summary refs log tree commit diff
path: root/src/test/ui/eval-enum.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/eval-enum.rs')
-rw-r--r--src/test/ui/eval-enum.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/eval-enum.rs b/src/test/ui/eval-enum.rs
index 4ef06c78069..551f10e66e3 100644
--- a/src/test/ui/eval-enum.rs
+++ b/src/test/ui/eval-enum.rs
@@ -1,9 +1,9 @@
 enum Test {
     DivZero = 1/0,
-    //~^ attempt to divide 1_isize by zero
+    //~^ attempt to divide `1_isize` by zero
     //~| ERROR evaluation of constant value failed
     RemZero = 1%0,
-    //~^ attempt to calculate the remainder of 1_isize with a divisor of zero
+    //~^ attempt to calculate the remainder of `1_isize` with a divisor of zero
     //~| ERROR evaluation of constant value failed
 }