mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00
12 lines
252 B
Rust
12 lines
252 B
Rust
//@ aux-build:unstable_feature.rs
|
|
//@ check-pass
|
|
#![feature(feat_bar, feat_moo)]
|
|
extern crate unstable_feature;
|
|
use unstable_feature::{Foo, Bar};
|
|
|
|
/// Bar::foo() should still be usable even if we enable multiple feature.
|
|
|
|
fn main() {
|
|
Bar::foo();
|
|
}
|