chroma/lexers/testdata/rust/proc_macros.actual
2025-03-22 20:46:00 +13:00

14 lines
286 B
Text

use smallvec::{smallvec, SmallVec};
lazy_static::lazy_static! {
static ref ONE: usize = 1;
}
fn main() {
pretty_assertions::assert_eq!(*ONE, *ONE);
let _: SmallVec<[_; 16]> = smallvec![1, 2, 3];
// And some builtin ones
println!("Hello, world!");
panic!();
}