mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03:00
0ea8958c02
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.
18 lines
416 B
Rust
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
|
|
}
|