2019-08-24 21:12:13 +03:00
|
|
|
// Derive helpers are resolved successfully inside `cfg_attr`.
|
|
|
|
|
|
|
|
|
|
//@ check-pass
|
2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: test-macros.rs
|
2019-08-24 21:12:13 +03:00
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate test_macros;
|
|
|
|
|
|
|
|
|
|
#[derive(Empty)]
|
2024-04-09 23:16:57 +02:00
|
|
|
#[cfg_attr(all(), empty_helper)]
|
2019-08-24 21:12:13 +03:00
|
|
|
struct S {
|
2024-04-09 23:16:57 +02:00
|
|
|
#[cfg_attr(all(), empty_helper)]
|
2019-08-24 21:12:13 +03:00
|
|
|
field: u8,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|