2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: issue-118809.rs
|
2025-09-26 13:59:06 +02:00
|
|
|
//@ ignore-backends: gcc
|
2024-02-11 02:43:44 +09:00
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate issue_118809;
|
|
|
|
|
|
|
|
|
|
#[derive(Deserialize)] //~ ERROR mismatched types [E0308]
|
|
|
|
|
pub struct Build {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|