summaryrefslogtreecommitdiffstats
path: root/tests/ui/did_you_mean/E0178.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/did_you_mean/E0178.rs')
-rw-r--r--tests/ui/did_you_mean/E0178.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/did_you_mean/E0178.rs b/tests/ui/did_you_mean/E0178.rs
new file mode 100644
index 000000000..095df640c
--- /dev/null
+++ b/tests/ui/did_you_mean/E0178.rs
@@ -0,0 +1,13 @@
+#![allow(bare_trait_objects)]
+
+trait Foo {}
+
+struct Bar<'a> {
+ w: &'a Foo + Copy, //~ ERROR expected a path
+ x: &'a Foo + 'a, //~ ERROR expected a path
+ y: &'a mut Foo + 'a, //~ ERROR expected a path
+ z: fn() -> Foo + 'a, //~ ERROR expected a path
+}
+
+fn main() {
+}