2019-08-24 21:12:13 +03:00
|
|
|
// Derive helpers are resolved successfully inside `cfg_attr`.
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
|
|
|
//@ aux-build: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() {}
|