2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
|
|
|
|
//@ aux-crate:noprelude:somedep=somedep.rs
|
|
|
|
|
//@ compile-flags: -Zunstable-options --extern somedep
|
|
|
|
|
//@ edition:2018
|
2019-12-05 14:43:53 -08:00
|
|
|
|
|
|
|
|
// Having a flag with `noprelude` and one without, will add to the prelude.
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
somedep::somefun();
|
|
|
|
|
}
|