error_tools 0.20.0

Basic exceptions handling mechanism
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::*;

#[ test ]
fn exposed_main_namespace()
{

  the_module::error::debug_assert_id!( 1, 1 );
  the_module::exposed::error::debug_assert_id!( 1, 1 );
  use the_module::exposed::*;
  error::debug_assert_id!( 1, 1 );

}