2024-02-16 14:02:50 -06:00
|
|
|
//@ force-host
|
2023-09-23 13:48:00 -05:00
|
|
|
#![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'
|
|
|
|
}
|