1 2 3 4 5 6 7 8 9
// Fixture: aggregate! with an unknown column inside a _count block // Expected diagnostic: "unknown column `notacol`" fn main() { let client = (); let _ = prax_codegen::aggregate!(client.user, { _count: { notacol: true }, }); }