summary refs log tree commit diff
path: root/tests/ui/internal-lints/existing_doc_keyword.rs
blob: 8f60b931591e26332b62d8d298f85b94fe3055b7 (plain)
1
2
3
4
5
6
7
8
9
10
//@ compile-flags: -Z unstable-options

#![feature(rustdoc_internals)]

#![crate_type = "lib"]

#![deny(rustc::existing_doc_keyword)]

#[doc(keyword = "tadam")] //~ ERROR
mod tadam {}