about summary refs log tree commit diff
path: root/tests/ui/rust-2018/uniform-paths/from-decl-macro.rs
blob: 9dcdbb0bce94da650e9737fcd1d31b91b2f7d874 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ build-pass (FIXME(62277): could be check-pass?)
//@ edition:2018

#![feature(decl_macro)]

macro check() {
    ::std::vec::Vec::<u8>::new()
}

fn main() {
    check!();
}