#![ allow( unused_imports ) ]
use test_tools::*;
use math_adapter::prelude::*;
use math_adapter::X2;
tests_impls!
{
fn convertion_foreign()
{
type T = i8;
crate::macro_foreign_x2::macro_test_foreign_x2_as_foreign!( cgmath::Vector2 ; T );
}
fn operation_deref()
{
type T = i8;
crate::macro_foreign_x2::macro_test_foreign_x2_operation_deref!( cgmath::Vector2 ; T );
}
}
tests_index!
{
convertion_foreign,
operation_deref,
}