mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
220 B
Rust
12 lines
220 B
Rust
// check-pass
|
|
// aux-crate:noprelude:somedep=somedep.rs
|
|
// compile-flags: -Zunstable-options
|
|
// edition:2018
|
|
|
|
// `extern crate` can be used to add to prelude.
|
|
extern crate somedep;
|
|
|
|
fn main() {
|
|
somedep::somefun();
|
|
}
|