]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/soft-wrapping.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[rust.git] / src / tools / rustfmt / tests / target / soft-wrapping.rs
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`.
15 fn foo() {}