mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
10 lines
191 B
Rust
10 lines
191 B
Rust
![]() |
// edition:2018
|
||
|
|
||
|
#![feature(uniform_paths)]
|
||
|
|
||
|
// Built-in attribute
|
||
|
use inline as imported_inline;
|
||
|
|
||
|
#[imported_inline] //~ ERROR cannot use a built-in attribute through an import
|
||
|
fn main() {}
|