blob: 5c3c753f9a7857eb5399e42a8dc5a9010bc0e167 [file] [log] [blame]
// compile-pass
// edition:2018
#![feature(decl_macro)]
macro check() {
::std::vec::Vec::<u8>::new()
}
fn main() {
check!();
}