about summary refs log tree commit diff
path: root/tests/ui/lint/lint-missing-doc-test.rs
blob: d86ec3525df36d9adf74d9216f431b24cf17166a (plain)
1
2
3
4
5
6
7
8
9
10
//! 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() {}