mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-03 07:45:30 +00:00
6 lines
115 B
Rust
6 lines
115 B
Rust
#![feature(proc_macro_hygiene)]
|
|
|
|
fn main() {
|
|
sqlx_macros::sql!("SELECT * from accounts where id != $1", "");
|
|
}
|