juniper/tests/codegen/fail/interface/struct/derive_unnamed_field.rs

7 lines
97 B
Rust
Raw Normal View History

use juniper::GraphQLInterface;
#[derive(GraphQLInterface)]
struct Character(i32);
fn main() {}