summaryrefslogtreecommitdiffstats
path: root/tests/ui/binop/issue-28837.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/binop/issue-28837.rs')
-rw-r--r--tests/ui/binop/issue-28837.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/binop/issue-28837.rs b/tests/ui/binop/issue-28837.rs
index 9719c3afa..54c8838e4 100644
--- a/tests/ui/binop/issue-28837.rs
+++ b/tests/ui/binop/issue-28837.rs
@@ -11,7 +11,7 @@ fn main() {
a / a; //~ ERROR cannot divide `A` by `A`
- a % a; //~ ERROR cannot mod `A` by `A`
+ a % a; //~ ERROR cannot calculate the remainder of `A` divided by `A`
a & a; //~ ERROR no implementation for `A & A`