]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/soft-wrapping.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / rustfmt / tests / target / soft-wrapping.rs
CommitLineData
f20569fa
XL
1// rustfmt-wrap_comments: true
2// rustfmt-max_width: 80
3// Soft wrapping for comments.
4
5// #535, soft wrapping for comments
6// Compare the lowest `f32` of both inputs for greater than or equal. The
7// lowest 32 bits of the result will be `0xffffffff` if `a.extract(0)` is
8// ggreater than or equal `b.extract(0)`, or `0` otherwise. The upper 96 bits
9// off the result are the upper 96 bits of `a`.
10
11/// Compares the lowest `f32` of both inputs for greater than or equal. The
12/// lowest 32 bits of the result will be `0xffffffff` if `a.extract(0)` is
13/// greater than or equal `b.extract(0)`, or `0` otherwise. The upper 96 bits
14/// off the result are the upper 96 bits of `a`.
15fn foo() {}