Skip to content

Commit ba2c2a6

Browse files
authored
Add missing closing quote
fixes #100563
1 parent 2fbc08e commit ba2c2a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_feature/src/builtin_attrs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
277277
ungated!(ignore, Normal, template!(Word, NameValueStr: "reason"), WarnFollowing),
278278
ungated!(
279279
should_panic, Normal,
280-
template!(Word, List: r#"expected = "reason"#, NameValueStr: "reason"), FutureWarnFollowing,
280+
template!(Word, List: r#"expected = "reason""#, NameValueStr: "reason"), FutureWarnFollowing,
281281
),
282282
// FIXME(Centril): This can be used on stable but shouldn't.
283283
ungated!(reexport_test_harness_main, CrateLevel, template!(NameValueStr: "name"), ErrorFollowing),

0 commit comments

Comments
 (0)