Skip to content

Commit

Permalink
Add missing ui tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jun 4, 2018
1 parent 402aa0f commit fb54a4a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/test/ui/feature-gate-doc_keyword.rs
@@ -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{}
11 changes: 11 additions & 0 deletions src/test/ui/feature-gate-doc_keyword.stderr
@@ -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`.

0 comments on commit fb54a4a

Please sign in to comment.