Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
lint
/
lint-missing-doc-test.rs
blob: d86ec3525df36d9adf74d9216f431b24cf17166a [
file
] [
log
] [
blame
]
//! This test checks that denying the missing_docs lint does not trigger
//! on the generated test harness.
//@ check-pass
//@ compile-flags: --test
#![
forbid
(
missing_docs
)]
#[
test
]
fn
test
()
{}