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