summary refs log tree commit diff
path: root/tests/ui/stability-attribute/stability-attribute-implies-no-feature.rs
blob: 47f885a43d6a70e4a6f7f64d1feb0a9d7e97f978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ 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'
}