summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-4310.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/issue-4310.rs')
-rw-r--r--src/tools/rustfmt/tests/target/issue-4310.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/issue-4310.rs b/src/tools/rustfmt/tests/target/issue-4310.rs
new file mode 100644
index 000000000..6cf494fc5
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-4310.rs
@@ -0,0 +1,9 @@
+#![feature(const_generics)]
+
+fn foo<
+ const N: [u8; {
+ struct Inner<'a>(&'a ());
+ 3
+ }],
+>() {
+}