summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/brace_style/item_always_next_line.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/configs/brace_style/item_always_next_line.rs')
-rw-r--r--src/tools/rustfmt/tests/target/configs/brace_style/item_always_next_line.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/configs/brace_style/item_always_next_line.rs b/src/tools/rustfmt/tests/target/configs/brace_style/item_always_next_line.rs
new file mode 100644
index 000000000..c13018630
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/configs/brace_style/item_always_next_line.rs
@@ -0,0 +1,25 @@
+// rustfmt-brace_style: AlwaysNextLine
+// Item brace style
+
+enum Foo {}
+
+struct Bar {}
+
+struct Lorem
+{
+ ipsum: bool,
+}
+
+struct Dolor<T>
+where
+ T: Eq,
+{
+ sit: T,
+}
+
+#[cfg(test)]
+mod tests
+{
+ #[test]
+ fn it_works() {}
+}