2015-07-02 21:00:59 -07:00
|
|
|
//@ aux-build:stability_attribute_issue.rs
|
|
|
|
|
#![deny(deprecated)]
|
|
|
|
|
|
|
|
|
|
extern crate stability_attribute_issue;
|
|
|
|
|
use stability_attribute_issue::*;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2018-07-23 12:22:23 +01:00
|
|
|
unstable();
|
2024-11-02 16:10:24 -07:00
|
|
|
//~^ ERROR use of unstable library feature `unstable_test_feature`
|
2018-07-23 12:22:23 +01:00
|
|
|
unstable_msg();
|
2024-11-02 16:10:24 -07:00
|
|
|
//~^ ERROR use of unstable library feature `unstable_test_feature`: message
|
2015-07-02 21:00:59 -07:00
|
|
|
}
|