aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/attr_deprecated.rs
blob: 01bc9c415022976eab2dad4ad698f5416563f4c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[deprecated(since="1.0", note="do not use this function")]
fn test1() {}

#[deprecated]
fn test() {}

#[deprecated = "a different message"]
fn test2() {}

fn main() {
    test(); // { dg-warning ".attr_deprecated::test. is deprecated" }
    test1(); // { dg-warning ".attr_deprecated::test1. is deprecated: do not use this function" }
    test2(); // { dg-warning ".attr_deprecated::test2. is deprecated: a different message" }
}