sqlx/tests/sql-macro-test.rs
2019-11-19 19:54:23 +00:00

6 lines
115 B
Rust

#![feature(proc_macro_hygiene)]
fn main() {
sqlx_macros::sql!("SELECT * from accounts where id != $1", "");
}