10 lines
169 B
Rust
10 lines
169 B
Rust
|
#![feature(custom_attribute, custom_derive, plugin, test)]
|
||
|
#![plugin(serde_macros)]
|
||
|
|
||
|
extern crate serde;
|
||
|
extern crate test;
|
||
|
|
||
|
mod syntax {
|
||
|
include!("bench.rs.in");
|
||
|
}
|