13 lines
138 B
Rust
13 lines
138 B
Rust
|
// compile-pass
|
||
|
// edition:2018
|
||
|
|
||
|
#![feature(decl_macro)]
|
||
|
|
||
|
macro check() {
|
||
|
::std::vec::Vec::<u8>::new()
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
check!();
|
||
|
}
|