summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/format_strings/issue-3263.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/format_strings/issue-3263.rs')
-rw-r--r--src/tools/rustfmt/tests/target/format_strings/issue-3263.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/format_strings/issue-3263.rs b/src/tools/rustfmt/tests/target/format_strings/issue-3263.rs
new file mode 100644
index 000000000..72f7e9cc6
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/format_strings/issue-3263.rs
@@ -0,0 +1,26 @@
+// rustfmt-format_strings: true
+// rustfmt-newline_style: Windows
+
+#[test]
+fn compile_empty_program() {
+ let result = get_result();
+ let expected = "; ModuleID = \'foo\'
+
+; Function Attrs: nounwind
+declare void @llvm.memset.p0i8.i32(i8* nocapture, i8, i32, i32, i1) #0
+
+declare i32 @write(i32, i8*, i32)
+
+declare i32 @putchar(i32)
+
+declare i32 @getchar()
+
+define i32 @main() {
+entry:
+ ret i32 0
+}
+
+attributes #0 = { nounwind }
+";
+ assert_eq!(result, CString::new(expected).unwrap());
+}