about summary refs log tree commit diff
path: root/tests/ui/proc-macro/issue-118809.rs
blob: a6a3956981a78b2deae6d370661ffba1e4f4e415 (plain)
1
2
3
4
5
6
7
8
9
10
//@ proc-macro: issue-118809.rs

#[macro_use]
extern crate issue_118809;

#[derive(Deserialize)] //~ ERROR mismatched types [E0308]
pub struct Build {
}

fn main() {}