2017-12-10 13:47:55 -06:00
|
|
|
#![crate_name="lint_output_format"]
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![feature(staged_api)]
|
2019-12-21 05:16:18 -06:00
|
|
|
#![unstable(feature = "unstable_test_feature", issue = "none")]
|
2017-04-24 03:19:12 -05:00
|
|
|
|
2018-07-23 06:23:40 -05:00
|
|
|
#[stable(feature = "stable_test_feature", since = "1.0.0")]
|
2022-03-04 20:59:18 -06:00
|
|
|
#[deprecated(since = "1.0.0", note = "text")]
|
2017-12-10 13:47:55 -06:00
|
|
|
pub fn foo() -> usize {
|
|
|
|
20
|
2017-04-24 03:19:12 -05:00
|
|
|
}
|
|
|
|
|
2019-12-21 05:16:18 -06:00
|
|
|
#[unstable(feature = "unstable_test_feature", issue = "none")]
|
2017-12-10 13:47:55 -06:00
|
|
|
pub fn bar() -> usize {
|
|
|
|
40
|
2017-04-24 03:19:12 -05:00
|
|
|
}
|
|
|
|
|
2019-12-21 05:16:18 -06:00
|
|
|
#[unstable(feature = "unstable_test_feature", issue = "none")]
|
2017-12-10 13:47:55 -06:00
|
|
|
pub fn baz() -> usize {
|
|
|
|
30
|
2017-04-24 03:19:12 -05:00
|
|
|
}
|