blob: 9af520a07693b75893b9c833a36a9fa2ff63ad05 [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
// edition:2018
#![feature(decl_macro)]
macro check() {
::std::vec::Vec::<u8>::new()
}
fn main() {
check!();
}