summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/bounds-type.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/bounds-type.stderr')
-rw-r--r--src/test/ui/parser/bounds-type.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/parser/bounds-type.stderr b/src/test/ui/parser/bounds-type.stderr
new file mode 100644
index 000000000..005bc1e54
--- /dev/null
+++ b/src/test/ui/parser/bounds-type.stderr
@@ -0,0 +1,14 @@
+error: `?` may only modify trait bounds, not lifetime bounds
+ --> $DIR/bounds-type.rs:10:8
+ |
+LL | T: ?'a,
+ | ^
+
+error: `~const` may only modify trait bounds, not lifetime bounds
+ --> $DIR/bounds-type.rs:15:8
+ |
+LL | T: ~const 'a,
+ | ^^^^^^
+
+error: aborting due to 2 previous errors
+