Fix ICE when using #[doc(keyword = "...")] on non-items

This commit is contained in:
Fabian Wolff 2021-06-17 16:45:26 +02:00
parent b17d9c1332
commit 2cedd86b1c
3 changed files with 23 additions and 2 deletions

View file

@ -0,0 +1,10 @@
// Regression test for the ICE described in #83512.
#![feature(doc_keyword)]
#![crate_type="lib"]
trait Foo {
#[doc(keyword = "match")]
//~^ ERROR: `#[doc(keyword = "...")]` can only be used on modules
fn quux() {}
}

View file

@ -0,0 +1,8 @@
error: `#[doc(keyword = "...")]` can only be used on modules
--> $DIR/issue-83512.rs:7:11
|
LL | #[doc(keyword = "match")]
| ^^^^^^^^^^^^^^^^^
error: aborting due to previous error