Add missing ui tests

This commit is contained in:
Guillaume Gomez 2018-06-03 12:15:55 +02:00
parent 402aa0ff15
commit fb54a4afbc
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#[doc(keyword = "match")] //~ ERROR: #[doc(keyword = "...")] is experimental
/// wonderful
mod foo{}

View File

@ -0,0 +1,11 @@
error[E0658]: #[doc(keyword = "...")] is experimental (see issue #51315)
--> $DIR/feature-gate-doc_keyword.rs:11:1
|
LL | #[doc(keyword = "match")] //~ ERROR: #[doc(keyword = "...")] is experimental
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(doc_keyword)] to the crate attributes to enable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0658`.