summaryrefslogtreecommitdiffstats
path: root/tests/ui/generics/issue-59508.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/generics/issue-59508.rs')
-rw-r--r--tests/ui/generics/issue-59508.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ui/generics/issue-59508.rs b/tests/ui/generics/issue-59508.rs
new file mode 100644
index 000000000..a4c7d4ff2
--- /dev/null
+++ b/tests/ui/generics/issue-59508.rs
@@ -0,0 +1,16 @@
+// run-rustfix
+
+#![allow(dead_code)]
+
+// This test checks that generic parameter re-ordering diagnostic suggestions contain bounds.
+
+struct A;
+
+impl A {
+ pub fn do_things<T, 'a, 'b: 'a>() {
+ //~^ ERROR lifetime parameters must be declared prior to type and const parameters
+ println!("panic");
+ }
+}
+
+fn main() {}