Sign in
fuchsia
/
third_party
/
rust
/
b3827e4f3728b77bd3e60587487ebfc3cc8d901b
/
.
/
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
()
{}