Skip to content

Commit 56b9643

Browse files
committed
manually fix rest of the tests
1 parent 6b03c52 commit 56b9643

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/ui/feature-gates/issue-43106-gating-of-builtin-attrs-error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ mod inline {
4444
#[inline = "2100"] fn f() { }
4545
//~^ ERROR valid forms for the attribute are
4646
//~| WARN this was previously accepted
47-
//~| NOTE #[deny(ill_formed_attribute_input)]` on by default
47+
//~| NOTE `#[deny(ill_formed_attribute_input)]` (part of `#[deny(future_incompatible)]`) on by default
4848
//~| NOTE for more information, see issue #57571 <https://github.com/rust-lang/rust/issues/57571>
4949

5050
#[inline] struct S;

tests/ui/macros/macro-in-expression-context.fixed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ macro_rules! foo {
88
//~| NOTE macro invocations at the end of a block
99
//~| NOTE to ignore the value produced by the macro
1010
//~| NOTE for more information
11-
//~| NOTE `#[warn(semicolon_in_expressions_from_macros)]` on by default
11+
//~| NOTE `#[warn(semicolon_in_expressions_from_macros)]` (part of `#[warn(future_incompatible)]`) on by default
1212
assert_eq!("B", "B");
1313
}
1414
//~^^ ERROR macro expansion ignores `assert_eq` and any tokens following

tests/ui/macros/macro-in-expression-context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ macro_rules! foo {
88
//~| NOTE macro invocations at the end of a block
99
//~| NOTE to ignore the value produced by the macro
1010
//~| NOTE for more information
11-
//~| NOTE `#[warn(semicolon_in_expressions_from_macros)]` on by default
11+
//~| NOTE `#[warn(semicolon_in_expressions_from_macros)]` (part of `#[warn(future_incompatible)]`) on by default
1212
assert_eq!("B", "B");
1313
}
1414
//~^^ ERROR macro expansion ignores `assert_eq` and any tokens following

0 commit comments

Comments
 (0)