// Temporary test to verify compile-time validation works
// This should be commented out after verification
use crateTable;
// This should fail to compile because 'nonexistent' is not a column in ValidationTestTable
/* #[derive(Output)]
#[sql(table = ValidationTestTable)]
struct TestInvalidColumn {
id: i32,
#[sql(select = ValidationTestTable.nonexistent || {arg0})]
name: String,
}
*/