mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
460 B
Rust
14 lines
460 B
Rust
// aux-build:stability-attribute-implies.rs
|
|
|
|
// Tests that despite the `foobar` feature being implied by now-stable feature `foo`, if `foobar`
|
|
// isn't allowed in this crate then an error will be emitted.
|
|
|
|
extern crate stability_attribute_implies;
|
|
use stability_attribute_implies::{foo, foobar};
|
|
//~^ ERROR use of unstable library feature 'foobar'
|
|
|
|
fn main() {
|
|
foo(); // no error - stable
|
|
foobar(); //~ ERROR use of unstable library feature 'foobar'
|
|
}
|