summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/format_strings/issue-202.rs
blob: 2a2c24140ddfc6d510ecf2f832d6e4e26e8d0ca1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// rustfmt-format_strings: true

#[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());
}