summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/brace_style
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/source/configs/brace_style')
-rw-r--r--src/tools/rustfmt/tests/source/configs/brace_style/fn_always_next_line.rs14
-rw-r--r--src/tools/rustfmt/tests/source/configs/brace_style/fn_prefer_same_line.rs14
-rw-r--r--src/tools/rustfmt/tests/source/configs/brace_style/fn_same_line_where.rs14
-rw-r--r--src/tools/rustfmt/tests/source/configs/brace_style/item_always_next_line.rs20
-rw-r--r--src/tools/rustfmt/tests/source/configs/brace_style/item_prefer_same_line.rs16
-rw-r--r--src/tools/rustfmt/tests/source/configs/brace_style/item_same_line_where.rs16
6 files changed, 94 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/source/configs/brace_style/fn_always_next_line.rs b/src/tools/rustfmt/tests/source/configs/brace_style/fn_always_next_line.rs
new file mode 100644
index 000000000..d3bd9ac09
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/brace_style/fn_always_next_line.rs
@@ -0,0 +1,14 @@
+// rustfmt-brace_style: AlwaysNextLine
+// Function brace style
+
+fn lorem() {
+ // body
+}
+
+fn lorem(ipsum: usize) {
+ // body
+}
+
+fn lorem<T>(ipsum: T) where T: Add + Sub + Mul + Div {
+ // body
+}
diff --git a/src/tools/rustfmt/tests/source/configs/brace_style/fn_prefer_same_line.rs b/src/tools/rustfmt/tests/source/configs/brace_style/fn_prefer_same_line.rs
new file mode 100644
index 000000000..78a449524
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/brace_style/fn_prefer_same_line.rs
@@ -0,0 +1,14 @@
+// rustfmt-brace_style: PreferSameLine
+// Function brace style
+
+fn lorem() {
+ // body
+}
+
+fn lorem(ipsum: usize) {
+ // body
+}
+
+fn lorem<T>(ipsum: T) where T: Add + Sub + Mul + Div {
+ // body
+}
diff --git a/src/tools/rustfmt/tests/source/configs/brace_style/fn_same_line_where.rs b/src/tools/rustfmt/tests/source/configs/brace_style/fn_same_line_where.rs
new file mode 100644
index 000000000..3b78932e1
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/brace_style/fn_same_line_where.rs
@@ -0,0 +1,14 @@
+// rustfmt-brace_style: SameLineWhere
+// Function brace style
+
+fn lorem() {
+ // body
+}
+
+fn lorem(ipsum: usize) {
+ // body
+}
+
+fn lorem<T>(ipsum: T) where T: Add + Sub + Mul + Div {
+ // body
+}
diff --git a/src/tools/rustfmt/tests/source/configs/brace_style/item_always_next_line.rs b/src/tools/rustfmt/tests/source/configs/brace_style/item_always_next_line.rs
new file mode 100644
index 000000000..0cc19b34d
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/brace_style/item_always_next_line.rs
@@ -0,0 +1,20 @@
+// 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() {}
+}
diff --git a/src/tools/rustfmt/tests/source/configs/brace_style/item_prefer_same_line.rs b/src/tools/rustfmt/tests/source/configs/brace_style/item_prefer_same_line.rs
new file mode 100644
index 000000000..4412bc869
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/brace_style/item_prefer_same_line.rs
@@ -0,0 +1,16 @@
+// rustfmt-brace_style: PreferSameLine
+// Item brace style
+
+struct Lorem {
+ ipsum: bool,
+}
+
+struct Dolor<T> where T: Eq {
+ sit: T,
+}
+
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {}
+}
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() {}
+}