hyperchad_template 0.3.0

HyperChad template package
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Make sure `std` is available but the prelude isn't
#![no_std]
extern crate std;

use std::vec::Vec;

use hyperchad_template::container;

#[ignore]
#[test]
fn issue_170() {
    let number = 42;
    let _ = container! { (number) };
}