use integer_array;
use ;
// Testing of real types
// Testing of complex types
/*
#[test]
fn create_type_complex() {
integer_array::declare_array_complex!( CArr11, Arr11, 11);
let x = CArr11::new( 1, 2 );
assert_eq!{ x[1], num::complex::Complex{re:1, im:2} };
}
#[test]
fn real() {
integer_array::declare_array_complex!( CArr11, Arr11, 11);
let x = CArr11::new( 5, 2 );
assert_eq!{ x.real() , Arr11::new(5) };
}
*/