2023-07-23 10:09:43 +00:00
|
|
|
// 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
|
|
|
|
|
|
2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: count.rs
|
2023-07-23 10:09:43 +00:00
|
|
|
extern crate count;
|
|
|
|
|
|
|
|
|
|
const _: () = {
|
|
|
|
|
assert!(count::number_of_tokens!() == 2);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fn main() {}
|