mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
12 lines
211 B
Rust
12 lines
211 B
Rust
//@ compile-flags: -Z unstable-options
|
|
|
|
#![feature(rustc_private)]
|
|
#![feature(rustdoc_internals)]
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![deny(rustc::existing_doc_keyword)]
|
|
|
|
#[doc(keyword = "tadam")] //~ ERROR
|
|
mod tadam {}
|