mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-04 09:53:04 +03:00
8 lines
163 B
Rust
8 lines
163 B
Rust
//@ check-pass
|
|
|
|
#![warn(clippy::missing_docs_in_private_items)]
|
|
#![allow(clippy::doc_include_without_cfg)]
|
|
#![doc = include_str!("../../README.md")]
|
|
|
|
fn main() {}
|