mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
4315ba64b5
proc-macros are processed early in the compiler pipeline. There is no need to involve codegen. So change to check-pass. I have also looked through each changed test and to me it is sufficiently clear that codegen is not needed for the purpose of the test. I skipped changing tests/ui/proc-macro/no-missing-docs.rs in this commit because it was not clear to me that it can be changed to check-pass.
17 lines
293 B
Rust
17 lines
293 B
Rust
// check-pass
|
|
// aux-build:test-macros.rs
|
|
// aux-build:derive-helper-shadowed-2.rs
|
|
|
|
#[macro_use]
|
|
extern crate test_macros;
|
|
#[macro_use(empty_helper)]
|
|
extern crate derive_helper_shadowed_2;
|
|
|
|
macro_rules! empty_helper { () => () }
|
|
|
|
#[derive(Empty)]
|
|
#[empty_helper] // OK
|
|
struct S;
|
|
|
|
fn main() {}
|