mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-25 22:22:44 +00:00
17 lines
160 B
Rust
17 lines
160 B
Rust
#![allow(unused)]
|
|
#![warn(clippy::suspicious_doc_comments)]
|
|
|
|
///! a
|
|
///! b
|
|
/// c
|
|
///! d
|
|
pub fn foo() {}
|
|
|
|
///! a
|
|
///! b
|
|
/// c
|
|
///! d
|
|
use std::mem;
|
|
|
|
fn main() {}
|