mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 04:27:38 +00:00
11 lines
167 B
Rust
11 lines
167 B
Rust
//@ proc-macro: issue-118809.rs
|
|
|
|
#[macro_use]
|
|
extern crate issue_118809;
|
|
|
|
#[derive(Deserialize)] //~ ERROR mismatched types [E0308]
|
|
pub struct Build {
|
|
}
|
|
|
|
fn main() {}
|