gccrs: Handle `async` functions in traits
[official-gcc.git] / gcc / testsuite / rust / compile / attr_deprecated_2.rs
blobbbb6c12f29044487c3a8ad7772390fe41bccbd6d
1 #[deprecated(since="1.0")]
2 fn test1() {}
4 // { dg-excess-errors "unknown meta item .invalid." }
5 #[deprecated(invalid="invalid")]
6 fn test2() {}
8 fn main() {
9     test1(); // { dg-warning ".attr_deprecated_2::test1. is deprecated" }
10     test2();