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