//! This test makes sure that code does not compile when using a Vec<T>
//! in an array field, where T is a non-builtin structure that doesn't
//! have the "schema" class function.
usefiberplane_pdk_macros::QuerySchema;useserde::Deserialize;#[derive(Deserialize)]pubstructRowItem{name: String,
value: String,
}#[derive(Deserialize, QuerySchema)]pubstructMissingRowSchema{table:Vec<RowItem>,
}pubfnmain(){}