summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-3348-c-string-literals/edition-spans.rs
blob: b3557c71b744e32dde0ae7d20a8f17a2f0d1c387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// even if this crate is edition 2021, proc macros compiled using older
// editions should still be able to observe the pre-2021 token behavior
//
// adapted from tests/ui/rust-2021/reserved-prefixes-via-macro.rs

// edition: 2021
// check-pass

// aux-build: count.rs
extern crate count;

const _: () = {
    assert!(count::number_of_tokens!() == 2);
};

fn main() {}