rust-postgres/postgres-derive-test/src/compile-fail/unknown-override.rs
2019-10-10 15:21:45 -07:00

16 lines
194 B
Rust

use postgres_types::{FromSql, ToSql};
#[derive(FromSql)]
#[postgres(foo = "bar")]
struct Foo {
a: i32,
}
#[derive(ToSql)]
#[postgres(foo = "bar")]
struct Bar {
a: i32,
}
fn main() {}