Files
rust/tests/incremental/incremental_proc_macro.rs
Zalathar 0ea8958c02 Migrate bfail/build-pass tests to bpass (2/2)
This is the subset of incremental tests that have a FIXME to consider migrating
to check-pass instead.

That migration is beyond the scope of this PR, but might be attempted later.
2026-04-22 12:28:25 +10:00

18 lines
416 B
Rust

//@ proc-macro: incremental_proc_macro_aux.rs
//@ revisions: bpass1 bpass2
//@ ignore-backends: gcc
// FIXME(#62277): could be check-pass?
// This test makes sure that we still find the proc-macro registrar function
// when we compile proc-macros incrementally (see #47292).
#![crate_type = "rlib"]
#[macro_use]
extern crate incremental_proc_macro_aux;
#[derive(IncrementalMacro)]
pub struct Foo {
_x: u32
}