7 lines
131 B
Rust
7 lines
131 B
Rust
|
#![feature(rustc_attrs)]
|
||
|
|
||
|
#[rustc_symbol_name] //~ ERROR _ZN5basic4main
|
||
|
#[rustc_item_path] //~ ERROR item-path(main)
|
||
|
fn main() {
|
||
|
}
|