gccrs: Handle `async` functions in traits
[official-gcc.git] / gcc / testsuite / rust / compile / issue-2178.rs
blobfaa22288b2b7bd491749af8447f8099515a50855
1 const A: usize = {
2     // { dg-warning "unused name" "" { target *-*-* } .-1 }
3     let x = 23;
4     x
5 };
7 static B: usize = {
8     let x = 23;
9     x