Skip to content

Commit

Permalink
Rollup merge of rust-lang#100567 - Rageking8:fix-100563, r=wesleywiser
Browse files Browse the repository at this point in the history
Add missing closing quote

fixes rust-lang#100563
  • Loading branch information
matthiaskrgr committed Aug 16, 2022
2 parents 0b19a18 + ba2c2a6 commit fc735b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_feature/src/builtin_attrs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
ungated!(ignore, Normal, template!(Word, NameValueStr: "reason"), WarnFollowing),
ungated!(
should_panic, Normal,
template!(Word, List: r#"expected = "reason"#, NameValueStr: "reason"), FutureWarnFollowing,
template!(Word, List: r#"expected = "reason""#, NameValueStr: "reason"), FutureWarnFollowing,
),
// FIXME(Centril): This can be used on stable but shouldn't.
ungated!(reexport_test_harness_main, CrateLevel, template!(NameValueStr: "name"), ErrorFollowing),
Expand Down

0 comments on commit fc735b0

Please sign in to comment.