summaryrefslogtreecommitdiffstats
path: root/tests/ui/feature-gates/feature-gate-proc_macro_byte_character.rs
blob: 0648ce0ee20e848b0b7d29ebfdca89a852c29842 (plain)
1
2
3
4
5
6
7
8
9
10
// 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'
}