summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/doc_comment_code_block_width/100_greater_max_width.rs
blob: 6bcb99b915ff958c10477a38bfa3578eeca9bda7 (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
26
27
28
29
// rustfmt-max_width: 50
// rustfmt-format_code_in_doc_comments: true
// rustfmt-doc_comment_code_block_width: 100

/// ```rust
/// impl Test {
///     pub const fn from_bytes(
///         v: &[u8],
///     ) -> Result<Self, ParserError> {
///         Self::from_bytes_manual_slice(
///             v,
///             0,
///             v.len(),
///         )
///     }
/// }
/// ```

impl Test {
    pub const fn from_bytes(
        v: &[u8],
    ) -> Result<Self, ParserError> {
        Self::from_bytes_manual_slice(
            v,
            0,
            v.len(),
        )
    }
}