From e8b5c21cacbf3b5ec7eba2a69cba63bdefd20628 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 7 Feb 2021 14:10:14 -0800 Subject: [PATCH] Test doc comment expansion --- tests/lib.expand.rs | 2 ++ tests/lib.rs | 3 +++ 2 files changed, 5 insertions(+) diff --git a/tests/lib.expand.rs b/tests/lib.expand.rs index b4fdec0..688852f 100644 --- a/tests/lib.expand.rs +++ b/tests/lib.expand.rs @@ -1,6 +1,8 @@ #![feature(prelude_import)] +#![doc = " Test"] #[prelude_import] use std::prelude::v1::*; #[macro_use] extern crate std; +#[doc = " Test"] pub fn test() {} diff --git a/tests/lib.rs b/tests/lib.rs index 0303187..ee7b4a1 100644 --- a/tests/lib.rs +++ b/tests/lib.rs @@ -1 +1,4 @@ +//! Test + +/// Test pub fn test() {}