about summary refs log tree commit diff
path: root/tests/ui/conservative_impl_trait.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/conservative_impl_trait.stderr')
-rw-r--r--tests/ui/conservative_impl_trait.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/conservative_impl_trait.stderr b/tests/ui/conservative_impl_trait.stderr
new file mode 100644
index 00000000000..63a4df242f8
--- /dev/null
+++ b/tests/ui/conservative_impl_trait.stderr
@@ -0,0 +1,11 @@
+error[E0277]: `()` is not an iterator
+  --> $DIR/conservative_impl_trait.rs:3:33
+   |
+LL | fn will_ice(something: &u32) -> impl Iterator<Item = &u32> {
+   |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^ `()` is not an iterator
+   |
+   = help: the trait `Iterator` is not implemented for `()`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.