rust/tests/ui/proc-macro/issue-118809.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
166 B
Rust
Raw Normal View History

2024-02-10 11:43:44 -06:00
//@ aux-build: issue-118809.rs
#[macro_use]
extern crate issue_118809;
#[derive(Deserialize)] //~ ERROR mismatched types [E0308]
pub struct Build {
}
fn main() {}