11 lines
184 B
Rust
11 lines
184 B
Rust
//@ compile-flags: -Z unstable-options
|
|
|
|
#![feature(rustdoc_internals)]
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![deny(rustc::existing_doc_keyword)]
|
|
|
|
#[doc(keyword = "tadam")] //~ ERROR
|
|
mod tadam {}
|