mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
12 lines
244 B
Rust
12 lines
244 B
Rust
![]() |
// edition:2018
|
||
|
|
||
|
// Built-in macro
|
||
|
use env as env_imported; //~ ERROR cannot import a built-in macro
|
||
|
|
||
|
// Tool attribute
|
||
|
use rustfmt::skip as imported_rustfmt_skip; //~ ERROR unresolved import `rustfmt`
|
||
|
|
||
|
fn main() {
|
||
|
env_imported!("PATH");
|
||
|
}
|