gccrs: Handle `async` functions in traits
[official-gcc.git] / gcc / testsuite / rust / compile / tuple1.rs
blob0e381dc6ca492c39b55ef55820b137eb69344096
1 fn main() {
2     let a: (i32, bool) = (123, 123); // { dg-error "expected" }
3     let b;
4     b = (456, 5f32);