forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
74 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
macro_rules! suite { | ||
( $( $fn:ident; )* ) => { | ||
$( | ||
const A = "A".$fn(); | ||
//~^ ERROR the name `A` is defined multiple times | ||
//~| ERROR missing type for `const` item | ||
//~| ERROR the type placeholder `_` is not allowed within types | ||
)* | ||
} | ||
} | ||
|
||
suite! { | ||
len; | ||
is_empty; | ||
} | ||
|
||
fn main() {} |
53 changes: 53 additions & 0 deletions
53
src/test/ui/issues/issue-69396-const-no-type-in-macro.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
error[E0428]: the name `A` is defined multiple times | ||
--> $DIR/issue-69396-const-no-type-in-macro.rs:4:13 | ||
| | ||
LL | const A = "A".$fn(); | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
| | | ||
| `A` redefined here | ||
| previous definition of the value `A` here | ||
... | ||
LL | / suite! { | ||
LL | | len; | ||
LL | | is_empty; | ||
LL | | } | ||
| |_- in this macro invocation | ||
| | ||
= note: `A` must be defined only once in the value namespace of this module | ||
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) | ||
|
||
error: missing type for `const` item | ||
--> $DIR/issue-69396-const-no-type-in-macro.rs:4:19 | ||
| | ||
LL | const A = "A".$fn(); | ||
| ^ help: provide a type for the item: `A: usize` | ||
... | ||
LL | / suite! { | ||
LL | | len; | ||
LL | | is_empty; | ||
LL | | } | ||
| |_- in this macro invocation | ||
| | ||
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) | ||
|
||
error[E0121]: the type placeholder `_` is not allowed within types on item signatures | ||
--> $DIR/issue-69396-const-no-type-in-macro.rs:4:19 | ||
| | ||
LL | const A = "A".$fn(); | ||
| ^ | ||
| | | ||
| not allowed in type signatures | ||
| help: replace `_` with the correct type: `bool` | ||
... | ||
LL | / suite! { | ||
LL | | len; | ||
LL | | is_empty; | ||
LL | | } | ||
| |_- in this macro invocation | ||
| | ||
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
Some errors have detailed explanations: E0121, E0428. | ||
For more information about an error, try `rustc --explain E0121`. |