summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/type_punctuation_density/compressed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/configs/type_punctuation_density/compressed.rs')
-rw-r--r--src/tools/rustfmt/tests/target/configs/type_punctuation_density/compressed.rs41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/configs/type_punctuation_density/compressed.rs b/src/tools/rustfmt/tests/target/configs/type_punctuation_density/compressed.rs
new file mode 100644
index 000000000..6571e448e
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/configs/type_punctuation_density/compressed.rs
@@ -0,0 +1,41 @@
+// rustfmt-type_punctuation_density: Compressed
+// 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;
+}