blob: 1c0b4ff7fe28ef507bb05ea82fbb8d3480a36fec [file]
#![feature(no_core)]
#![no_core]
#[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" }
}