summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/type_punctuation_density/wide.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/source/configs/type_punctuation_density/wide.rs')
-rw-r--r--src/tools/rustfmt/tests/source/configs/type_punctuation_density/wide.rs37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/source/configs/type_punctuation_density/wide.rs b/src/tools/rustfmt/tests/source/configs/type_punctuation_density/wide.rs
new file mode 100644
index 000000000..fe0c08167
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/type_punctuation_density/wide.rs
@@ -0,0 +1,37 @@
+// rustfmt-type_punctuation_density: Wide
+// Type punctuation density
+
+fn lorem<Ipsum:Dolor+Sit=Amet>() {
+ // body
+}
+
+struct Foo<T: Eq + Clone, U>
+where U: Eq + Clone {
+ // body
+}
+
+trait Foo<'a, T = usize>
+where T: 'a + Eq + Clone
+{
+ type Bar: Eq + Clone;
+}
+
+trait Foo: Eq + Clone {
+ // body
+}
+
+impl<T> Foo<'a> for Bar
+where for<'a> T: 'a + Eq + Clone
+{
+ // body
+}
+
+fn foo<'a, 'b, 'c>()
+where 'a: 'b + 'c
+{
+ // body
+}
+
+fn Foo<T = Foo, Output = Expr<'tcx> + Foo>() {
+ let i = 6;
+}