Files
rust/tests/ui/unstable-feature-bound/unstable-feature-cross-crate-multiple-symbol.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
252 B
Rust
Raw Normal View History

2025-07-14 13:38:36 +00:00
//@ 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();
}