summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/doc_comment_code_block_width/100.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/configs/doc_comment_code_block_width/100.rs')
-rw-r--r--src/tools/rustfmt/tests/target/configs/doc_comment_code_block_width/100.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/configs/doc_comment_code_block_width/100.rs b/src/tools/rustfmt/tests/target/configs/doc_comment_code_block_width/100.rs
new file mode 100644
index 000000000..c010a28aa
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/configs/doc_comment_code_block_width/100.rs
@@ -0,0 +1,16 @@
+// 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())
+ }
+}