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