mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 11:48:30 +00:00
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!();
|
||
|
}
|