about summary refs log tree commit diff
path: root/tests/ui/issues/issue-71584.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-71584.stderr')
-rw-r--r--tests/ui/issues/issue-71584.stderr17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-71584.stderr b/tests/ui/issues/issue-71584.stderr
new file mode 100644
index 00000000000..6ddb7657301
--- /dev/null
+++ b/tests/ui/issues/issue-71584.stderr
@@ -0,0 +1,17 @@
+error[E0284]: type annotations needed
+  --> $DIR/issue-71584.rs:4:15
+   |
+LL |     d = d % n.into();
+   |           -   ^^^^
+   |           |
+   |           type must be known at this point
+   |
+   = note: cannot satisfy `<u64 as Rem<_>>::Output == u64`
+help: try using a fully qualified path to specify the expected types
+   |
+LL |     d = d % <u32 as Into<T>>::into(n);
+   |             +++++++++++++++++++++++ ~
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0284`.