rust/src/test/ui/symbol-names/basic.rs
2018-12-25 21:08:33 -07:00

6 lines
131 B
Rust

#![feature(rustc_attrs)]
#[rustc_symbol_name] //~ ERROR _ZN5basic4main
#[rustc_item_path] //~ ERROR item-path(main)
fn main() {
}