mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
11 lines
217 B
Rust
11 lines
217 B
Rust
//@ force-host
|
|
#![crate_type = "proc-macro"]
|
|
|
|
extern crate proc_macro;
|
|
|
|
use proc_macro::Literal;
|
|
|
|
fn test() {
|
|
Literal::byte_character(b'a'); //~ ERROR use of unstable library feature 'proc_macro_byte_character'
|
|
}
|