blob: 6217f1c7e61d412eb0dfb64b1a1bc8f16a5d1956 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// force-host
// no-prefer-dynamic
#![crate_type = "proc-macro"]
extern crate proc_macro;
use proc_macro::TokenStream;
#[proc_macro_attribute]
pub fn vec_ice(_attr: TokenStream, input: TokenStream) -> TokenStream {
// This redundant convert is necessary to reproduce ICE.
input.into_iter().collect()
}
|