Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
unstable-feature-bound
/
unstable-feature-cross-crate-multiple-symbol.rs
blob: 5b09c898a08bff5082551d12079eafff9ebf0838 [
file
] [
log
] [
blame
]
//@ 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
();
}