mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-04 08:15:39 +00:00
12 lines
174 B
Rust
12 lines
174 B
Rust
#[derive(sqlx::Type)]
|
|
#[sqlx(rename = "foo")]
|
|
enum Foo {
|
|
One,
|
|
Two,
|
|
Three,
|
|
}
|
|
|
|
fn main() {
|
|
compile_error!("trybuild test needs to fail for stderr checking");
|
|
}
|